Home  >  Article  >  php教程  >  PHP函数引用类型参数

PHP函数引用类型参数

WBOY
WBOYOriginal
2016-06-13 08:52:201397browse

PHP函数引用类型参数

$arr = array();

 

function add($flag,&$arr=array()){

    $arr[$flag] = $flag;

    $flag ++;

    if($flag

        add($flag,$arr);

    }

    return;

}

 

add(0,$arr);

var_dump($arr);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn