/**
* Create an array
*
* @param mixed $arg1
* @param mixed $arg2
* @param mixed $...
*
* @return array containing arg1 as the first element and arg2 as the second etc.
* @since PHP 4, PHP 5, PHP 7
*/
function array ($arg1, $arg2 = ?, $...)
/**
* Adds one to the parameter passed by value.
*
* @param mixed $param The value which is to be incremented.
*
* @return void
* @since PHP 4, PHP 5
*/
function add_one ($param)
{
$param++;
}
/**
* Adds one to the parameter passed by reference.
*
* @param mixed &$param The value which is to be incremented.
*
* @return void
* @since PHP 4, PHP 5
*/
function add_one_ref (&$param)
{
$param++;
}
/**
* Adds one to the parameter passed by reference.
*
* @param mixed &$param The value which is to be incremented.
*
* @return void
* @since PHP 7.0
*/
function add_one_bind (&$param)
{
$param++;
}