Home >> PHP >> Function in PHP

Function in PHP

A block of code that perform a specific task.

A function will not exceute automatically on page loads.

A function will be exceuted when call to function.

Function are two types-

1)-User defined function

2)-Predefined function

1)-User defined function-

function myfunction(){

       //some code

}

2)-Predefined function-

print()

echo()

header()

phpinfo()

etc.

Post Your Comment

Next Questions
isset() function
unset() function
empty() function
What are function for controlling script execution
exit() function
die() function
fun_num_args() function
ereg_replace() function
ereg_ireplace() function
preg_match() function
preg_replace() function
File handling
fopen() function
fclose() function
fread() function
create the file
Check the file is available or not
Destroy the file
Write into the file
Create into folder
Remove a folder
touch() function
file_exits() function
unlink() function
fwrite() function

Copyright ©2022 coderraj.com. All Rights Reserved.