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
Do you know design patterns. List few?
How do you trim spaces in excel?
What is pdo in php why use?
What is php session start?
What are the php functions?
How are php sessions stored?
How can you retrieve a cookie value?
What are the final class and final method?
What is the difference between mysqli_fetch_object() and mysqli_fetch_array()?
How is it possible to propagate a session id?
When use javascript vs php?
Is php strongly typed?
Explain the difference between $message and $$message?
How to get the total number of values in an array?
Explain how we can get the number of elements in an array?