Saturday 11 July 2015

Functions - PHP Tutorial 9


Functions

In previous lessons you have learned to use functions like documentationdate() and documentationarray(). In this lesson, you will learn to create your own functions using documentationfunction.

What is a function?

A function process inputs and returns an output. It can be useful if, for example, you have a wide range of data you have processed or if you have calculations or routines that must be performed many times.
A function has the following syntax:

 Function Name(list of parameters) {
    Statement
 }
 
 
This way, we can make a very simple function that can add the value 1 to a number. It could look like this:

 function AddOne($x) {
    $x = $x + 1;
    echo $x;
 }

 
 
Our function is named AddOne and must be called with a number - e.g. 34....

 echo AddOne(34);
 
 
... which (surprise!) will return 35.
The example above processes a number, but functions can work with text, dates or anything else. You can also create functions that are called by many different parameters. In this lesson you will see different examples of functions.

Example 1: Function with more parameters

As mentioned above, you can easily create a function that can be called with more parameters. In the next example, we'll create a function that is called with three numbers and then returns the value of the three numbers added together:

 <html>
 <head>
 <title>Functions</title>

 </head>
 <body>

 <?php

 function AddAll($number1,$number2,$number3) {
    $plus = $number1 + $number2 + $number3;
    return $plus;
 }
  
 echo "123 + 654 + 9 equals " . AddAll(123,654,9);

 ?>

 </body>
 </html>
 
 
Ok. Now that was almost too simple! But the point was just to show you that a function can be called with more parameters.

Example 2: English date and time

Let us try to make a slightly more complex function. A function that's called with a date and time returns it in the format: Saturday, 11 July, 2015, 10:00:00 PM

 <html>
 <head>
 <title>Functions</title>
 </head>
 <body>

 <?php

 function EnglishDateTime($date) {
  
   // Array with the English names of the days of the week
   $arrDay = array("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
  
   // Array with the English names of the months
   $arrMonth = array("","January","February","March","April","May","June","July","August","September","October","November","December");
  
   // The date is constructed
   $EnglishDateTime = $arrDay[(date("w",$date))] . ", " . date("d",$date);
   $EnglishDateTime = $EnglishDateTime  . " " . $arrMonth[date("n",$date)] . " " . date("Y",$date);
   $EnglishDateTime = $EnglishDateTime  . ", " . date("H",$date) . ":" . date("i",$date);
  
   return $EnglishDateTime;

 }
  
 // Test function
 echo EnglishDateTime(time());

 ?>

 </body>
 </html>
 
 
Please note how '$arrMonth' and '$EnglishDateTime' are constructed over several lines. This is done so that users with a low screen resolution can better see the example. The method has no effect on the code itself.
The function above works on all web servers regardless of language. This means that you can use such a function if your website, for example, is hosted on a French server, but you want English dates.
At this stage, we will not go into more depth with functions, but now you know a little about how functions work.

Written by

is one of the Team Member of Programmer vs Hacker. He has written many articles on this website and is a patner of this website.

0 comments:

Post a Comment

We’re eager to see your comment. However, Please Keep in mind that comments are moderated manually by our human reviewers according to our comment policy, and all the links are nofollow. Using Keywords in the name field area is forbidden. Let’s enjoy a personal and evocative conversation.

© 2015 Programmer vs Hacker. All rights resevered.