Display the drop-down list

Configuration of var_export()

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

require_once 'functions/p/print_r.php';

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

class var_export extends print_r
{
    public 
$examples = [
        [
            [
                
=> 1,
                
=> 2,
                
=> [
                    
=> "a",
                    
=> "b",
                    
=> "c",
                ],
            ],
        ],
        [
            
3.1,
            
true
        
]
    ];

    public 
$synopsis 'mixed var_export ( mixed $expression [, bool $return = false ] )';
}