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 php in simple words?
Can we extend final class in php?
Can we use onclick in submit button?
What is a http session?
Tell me what is the use of explode() function?
What is php oops concepts?
What is php session and how it works?
How to set a value in session? How to remove data from a session?
Tell me what is the main difference between require() and require_once()?
What is the default time in seconds for which session data is considered valid?
What are the options to transfer session ids?
How do you explain independent and dependent variables?
What is varchar mysql?
How to download and install php on windows?
Is it easy to learn php?