php函数运行内存小程序,看视频而来

<?php   
function abc($n){
 if($n>2){
  abc(--$n);
 }
 echo '$n='.$n."<br/>";
 }
 abc(4);

?>

你可能感兴趣的:(php函数运行内存小程序,看视频而来)