Home > Q&A > body text
<?php$one = 10;function demo(){ $two = 100; $result = $two $GLOBALS['one']; return $result;}//You will find that the result becomes 110echo demo();?>