Ejemplo n.º 1
0
[expect php]
[file]
<?php 
error_reporting(E_ALL & ~E_NOTICE);
function test_global()
{
    // Most predefined variables aren't "super" and require
    // 'global' to be available to the functions local scope.
    global $HTTP_POST_VARS;
    echo $HTTP_POST_VARS['name'];
    // Superglobals are available in any scope and do
    // not require 'global'. Superglobals are available
    // as of PHP 4.1.0
    echo $_POST['name'];
}
$HTTP_POST_VARS['name'] = "My name";
test_global();
Ejemplo n.º 2
0
function get_global($glob)
{
    if (!is_array($glob)) {
        $glob = test_global($glob);
    } else {
        foreach ($glob as $n => $g) {
            $glob[$n] = test_global($g);
        }
    }
    return $glob;
}