집 > Q&A > 본문
路过2017-10-23 12:05:45
로컬 테스트는 실제로 15입니다. 로컬에서 시도해 보세요
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y ;
$y=$x+$y;
}
mytest();
echo $y;