what are in image creating functions in php
Answers were Sorted based on User's Feedback
Answer / yukti vig
extension=php_gd2.dll
you need to open an extension for gdlibrary in the php.ini
file. and then use simple image functions as suggested by
Munesh
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
List some of the features of php7.
How do I escape data before storing it in the database?
Explain how we can retrieve the data in the result set of mysql using php?
hi, i am new for php I want to know where to create & how to run phpscript programme in LAMP?
What is stripslashes php?
What is chrome logger?
What are the different loops in php?
How do you sort an array in php?
Which function is used in php to search a particular value in an array?
what is the dirrence in PHP4 & PHP5 . ?
What is difference between include and include_once in php?
why we use @symbol before the variable