PHP 全局变量(global)
程序员文章站
2024-01-21 21:27:22
...
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<?php
$name = "张三"; //全局变量
function showInfo()
{
global $name; //声明为全局变量,实质是引用传地址。不能一边声明一边赋值,赋值需要另起一行。
$name = "Mary";
echo "我的名字叫{$name}<hr>";
}
showInfo();
?>