Whhat is a Functions
A function is a block of statement, A function will not execute immediately when we run, we have to call the function to execute
example
<?php
function name(){ // for creating a function
echo "My name is -----";
}
name(); // calling the function
| Is This Answer Correct ? | 4 Yes | 0 No |
which will print out the php call stack?
How send email in php?
How to stop the execution of php script?
How to find datatype of variable in php?
What is mysqli_real_escape_string?
What are the methods of array in java?
How can we get second of the current time using date function?
What is php array function?
What is the difference between require and include in php?
What are magic constants in php?
in PHP for pdf which library used?
What is $_ get and $_ post in php?