What is the PHP predefined variable that tells the What
types of images that PHP supports?
Answer / vijaya
int imagetypes ( void )
This function returns a bit-field corresponding to the image
formats supported by the version of GD linked into PHP. The
following bits are returned, IMG_GIF | IMG_JPG | IMG_PNG |
IMG_WBMP | IMG_XPM.
Is This Answer Correct ? | 6 Yes | 0 No |
tel me any 2 regular expressions with example
What does PEAR stands for?
what is PHP accelerator ?
Why do we need abstract class in php?
What is strlen function in php?
I am a 2007 Passed out, Jobless for almost 2.6 years. I am preparing myself as a Php programmer. Will i get a job in Php and can any one guide me please.
Tell me what are the __construct() and __destruct() methods in a php class?
Questions on OOP concepts 1. What are the access specifiers available in php ? Explain 2. What is object cloning ? 3. What are the differences between interface and abstract class ? 4. What is overloading ? 5. What is overriding ? 6. How to prevent function overriding ? 7. What is the use of "final" keyword ? 8. What is static variable ? How will access a static variable ? What is static class ?
What is the use of friend function in php?
How long should a session last?
What is the difference between null and empty?
can we swap two different string using php for example:-- before swapping:-- 1 string :-hello friend, 2 string :-my dear, after swapping that strings will be: 1.hello dear, 2.my friend.