興味のあるプロジェクトをフォローし、それらに関する最新ニュースをチェックしてください
<?php
$foo = 100;
function demo($n){
$n = 10;
}
echo demo($foo).'<br />';
$foo;
?>