Explain about Functions in PHP?
Answer / zahid
There are type type of function in php,
User defined function
System defined function
Example of user defined function
function abc()
{
return "hello world";
}
echo abc();
Example of systek defined function
$name = "Zahid";
echo strlength($name);
//Outpur 5, here is strlength is php system defind, and many more function availalbe in php
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what does the function get_magic_quotes_gpc() means?
I just installed php 5.3.1 in my linux server and now my old work which i used to write with tags is not working at all.. Please help me out.. How can i resolve this??
what is php stands for?
23 Answers Infosys, Satyam, Torque Infotech,
what is the post and get method??
How can you retrieve a cookie value?
Is age interval or ordinal?
What is difference between isset and empty in php?
how to do connectivity of 2 dbs in PHP script?
How to get a random value from a php array?
Is multiple inheritance supported in php?
Tell me what is the main difference between require() and require_once()?
How do you parse and process html/xml in php?