Functions

Zend PHP 5 – Functions – Syntax

Functions are covered within the Zend PHP study guide. Functions are packages of code that serve as instructions to execute an action.
Any valid PHP code can reside in a function.
You can define a function like the example written below.
<?php
function foo($arg_1, $arg_2, /* …, */ $arg_n)
{