首页 > 问答 > 正文
路过2017-10-23 12:05:45
本地测试 确实是15,你在你本地试试
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y;
$y=$x+$y;
}
mytest();
echo $y;