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 |
Is php harder than javascript?
Does php need apache?
Explain some of the php string functions?
How cookies are trported from browsers to servers?
What is multidimensional array in php?
What is php oop?
What is PHP's configuration file called?
Tell me how is it possible to know the number of rows returned in result set?
How does php session work?
What's the diff. between include() and Include_once().
how to register website in internet
What types of loops exist in php?