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

PHP函数引用类型参数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 08:52:201438browse

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