<?php$one = 10;function demo(){ $two = 100; $result = $two + $GLOBALS['one']; return $result;}//你会发现结果变成了110echo demo();?>