by Andres Baravalle
Functions are "a sequence of program instructions that perform a specific task, packaged as a unit" (Wikipedia, 2013)
Functions allow to:
PHP provides a number of functions, through:
Much of the power of PHP comes from the large number of extensions.
As you have already seen, you do not need to write all your PHP code nor be familiar with all the PHP code that you are using. To use a function, you only need to know the parameters it requires and the outcome of the function.
The next step is to write your own PHP functions.
A function may be declared (or "defined") using the function
keyword:
<?php
function foo($arg_1, $arg_2, /* ..., */ $arg_n){
echo "Example function.\n";
return $retval; // $retvar must be defined in the function
}
?>
Let's examine the code:
foo
is the name of the function$arg_1
and $arg_2
will be passed when invoking the functionThere are both restrictions and conventions when it comes to naming functions.
Restrictions:
Conventions - use one of the following:
myFirstFunction()
my_first_function()
Functions are invoked (or ‘called’) by using their name and passing the required parameters:
<?php
foo($arg_a, $arg_b);
?>
The value of $arg_a
will be passed (copied) to $arg_1
(see previous slide before) and the value of $arg_b
will be passed to $arg_2
.
Often a function will take some argument, do some computation and then return a value.
This is done using the keyword
return
.
The next step is to write our first function; create a function named hello
that:
hello
function to tell them hiThe scope of a variable is the region of code where it is defined and may be used.
A ‘global’ variable has global scope: it can be accessed anywhere in a script (but is not included in the local scope). Other variables such as those declared within a function are ‘local’ variables and may only be accessed within the function.
<?php
$a = 1; // global scope
function test(){
echo $a; // reference to local scope variable
}
test(); // this will not work as expected
?>
The global
keyword allows to access variables from the global scope.
<?php
$a = 1;
function increment(){
global $a;
$a++;
}
increment();
echo $a;
?>
Alternatively, you can also use the PHP-defined $GLOBALS array.
Create a function that returns "Hello " and the value of the global variable $hello
.
Call the function and print "Hello World" in the screen (using the function's output).
A static
variable exists only in a local function scope, but it does not lose its value when program execution leaves this scope.
<?php
function increment() {
static $a = 0;
$a++; // a will be incremented each time the function is called
}
?>
Arguments allow to pass variables to the function. Values can be passed by value or by reference.
When passing by value (default behavior), the function receives a copy of the value of the original variable. Any modifications to the variable in the function are not reflected in the original.
<?php
function increment($b) {
$b++;
}
$a = 10;
increment($a);
echo $a; // what's the value of $a?
?>
When passing by reference, the function receives a reference to the original variable. Any modifications made to the variable are reflected in the original.
<?php
function increment(&$b) {
$b++;
}
$a = 10;
increment($a);
echo $a; // what's the value of $a?
?>
Create a function that accepts two parameters (width and height) and calculates the area of a rectangle.
The function will then return an associative array including perimeter and area.
You will then use the associative array in the phrase "A rectangle of width $width and $height $height has an area of $area and a perimeter of $perimeter.".
Analyse the structure of the following multi-dimensional array:
<?php
$triangles = array(0 => array(2, 3, 4),
1 => array(5, 9, 11),
2 => array(16, 100, 56),
3 => array(35, 29, 56),
4 => array(161, 10, 96),
5 => array(58, 91, 11),
6 => array(19, 10, 40));
?>
Each element of the outer array includes a inner array. The inner array includes 3 integers, representing the sides of a triangle.
Some of those arrays are valid triangles, some are not. Use variables, loops and functions to find out which ones are valid triangles and which ones are not.
Return a line like this:
triangles[0] is (or is not) a valid triangle.
for each of the elements of the array. Read this page on triangles sides to get you started.
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License