<?php
function aa() {
$a = 55;
}
function bb() {
$b = $a;
return $b;
}
echo bb();
?>
我要在页面里打印出 55 的话,怎么把$a设置为global的话有效呢?