Display the drop-down list

Configuration of max()

<?php
/**
 * PHP By Example
 *
 * @copyright 2014 Michel Corne 
 * @license   http://www.opensource.org/licenses/gpl-3.0.html GNU GPL v3
 */

require_once 'models/function_core.php';

/**
 * Function configuration
 *
 * @see docs/function-configuration.txt
 */

class max extends function_core
{
    public 
$examples = [
        [
567],
        [
            [
245]
        ],
        [
0'hello'],
        [
'hello'0],
        [
'42'3],
        [-
1'hello'],
        [
            [
222],
            [
1111]
        ],
        [
            [
248],
            [
257]
        ],
        [
            
'string',
            [
257],
            
42
        
],
    ];

    public 
$synopsis       'mixed max ( mixed $value1 , mixed $value2 [, mixed $... ] )';
    public 
$synopsis_fixed 'mixed max ( mixed $value1 , mixed $value2 , mixed $value3 [, mixed $... ] )';
}