<?php$one = 10;function 데모(){ $two = 100; $result = $two + $GLOBALS['one']; return $result;}//당신은 결과는 110echo deco();?>