php global范例

2020-12-13 02:26

阅读:566

标签:style   class   code   ext   color   c   

Example #1 $GLOBALS 范例

function test() {
    
$foo "local variable";

    echo 

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

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

以上例程的输出类似于:

$foo in global scope: Example content
$foo in current scope: local variable

php global范例,搜素材,soscw.com

php global范例

标签:style   class   code   ext   color   c   

原文地址:http://www.cnblogs.com/timelesszhuang/p/3718300.html

上一篇:抓取网页时,乱码问题

下一篇:HTML DOM


评论


亲,登录后才可以留言!