PHP嵌套函数的使用

<?php
function outer($a){
    function inner($b){
    echo "hello,I,m $b<br/>";
    }
echo "this is $a"."<hr color=red/>";
}
//嵌套函数的调用
//必须先调用外层函数然后在调用内层函数
outer("冬冬");
inner("[email protected]");
?>


你可能感兴趣的:(PHP嵌套函数的使用)