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
Is php still in demand?
Why is node js better than php?
How to set cookies?
What is strlen php?
What is helper library?
How to write the form tag correctly for uploading files?
Write a program to upload a file in php?
How to select a database in php?
What is the apache?
What is difference between Method overriding and overloading in PHP?
What is the difference between == and === in php?
How to replace a text in a string with another text in php?
What will the ?getdate() function returns in PHP?
Is php a dying language?
Why use php artisan serve?