what are in image creating functions in php
Answer Posted / sanjeev kumar
image creating functions
dir()
Example :-
<?php
//Open images directory
$dir = dir("images");//List files in images directory
while (($file = $dir->read()) !== false)
{
echo "filename: " . $file . "<br />";
}$dir->close();
?>
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the difference between nowdoc and heredoc?
How to check a variable is array or not in php?
How do I make a reset button in html?
What is http php?
What is var_dump?
How can I increase my website session?
What is the functionality of md5 function in php?
What is php ci?
What is an object in php?
What is php and sql?
How check variable is set or not in php?
How be the result set of mysql handled in php?
What is a php web application?
Tell me what does the scope of variables means?
what is constructor