php global范例

Example #1 $GLOBALS 范例php

<?php
function test() {
    $foo = "local variable";

    echo '$foo in global scope: ' . $GLOBALS["foo"] . "\n";
    echo '$foo in current scope: ' . $foo . "\n";
}

$foo = "Example content";
test();
?>

以上例程的输出相似于:ide

$foo in global scope: Example content
$foo in current scope: local variable
没有平白无故的荣耀