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 $_ request in php?
What are examples of dependent variables?
Can we use onclick in submit button?
Why do we use csrf token?
Write a program to find a string is palindrome or not?
Tell us why did you choose this particular career path?
What is action hooks and filter hooks?
Is empty function c++?
What is a persistence cookie?
What is curl php?
What are the Formatting and Printing Strings available in PHP?
Who created numbers?
Do you know what is the difference between mysql_fetch_object() and mysql_fetch_array()?
what is the use of include_once in php?
How to check a variable is array or not in php?