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 |
how retrive the video file in php using video tag
What is the difference between fopen() and fclose()?
What is the default time in seconds for which session data is considered valid?
What is abstract class in php?
What is mysql_fetch_array?
What are different ways to redirect from on page to other?
How many ways to include array elements in double-quoted strings using php?
Whether session will work if we disable cookies in client browser ?
What is regular expression in javascript?
What distinguishes php from something like client side java script?
What is whitespace in html?
Is php dying 2018?