PHP tutorial-Function

PHP Function


A function is a block of code to accomplish a specific task. A function is executed when it is called. A function returns or does not return a value;

A function that does not return a value


function function_name(){
   statements;
}
 
Note: the name of function must start with a letter or underscore not a number
Example:
<html>
<body>
 
<?php
//defining function:printHello
function printHello(){
 echo "Hello";
}
//calling the function:printHello
printHello();
 
?>
 
</body>
</html>

A function that returns a value


function function_name(){
   statements;
   return value;
}
 
Example:
<html>
<body>
 
<?php
//defining function: sum
function sum(){
  $s=10+20;
  return $s;
}
//calling the function: sum
$total=sum();
echo "Total=".$total;
 
?>
</body>
</html>
 

Function parameters


Parameters are values to be passed to the function.

Example:

<html>
<body>
 
<?php
//defining function:printName
function printName($name){
 echo "Hello ".$name;
}
//calling the function:printName
printName("Khorn Channa");
 
?>
 
</body>
</html>





comment

Posted comments

san:

It is easy to follow PHP lessons.

03-15-2013

ukilik:

Thank u for useful web tips...

11-15-2012

maxxsaiyan123:

sap.net is so more comfortable for networking process in LAN .........
-----------------
MAURYA SOFTWARE
[url="http://mauryasoft.in] MAURYA SOFTWARE [/url]

10-29-2012

dano:

Good javascript tutorial
Thank

10-26-2012


...........................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word.
However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Web Scripts Tips
Download
Related Posts