首頁 > 問答 > 主體
路过2017-10-23 12:05:45
本地測試確實是15,你在你本地試試
<?php
#$x=5;
$y=10;
function mytest()
{
global $x,$y;
$y=$x+$y;
#}
mytest();
echo $y;