A function is series of code that take inputs or as parameter and does some processing and returns the outputs..
User defined Function in PHP:
PHP Allow you to create your own function.
A User defined function must be declare with name ‘function’
<?php
function userfunction(){
echo"User Defined Function";
}
userfunction();
?>
read more..
No comments:
Post a Comment