Home >Backend Development >PHP Tutorial > java软件工程师学php -13. 值传递与引用传递

java软件工程师学php -13. 值传递与引用传递

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 13:11:231045browse

java程序员学php -13. 值传递与引用传递
php和Java一样,调用函数时,基本数据类型用值传递,对象用引用传递

但php也可以传递基本数据类型的引用(用&符号):


$w = 65; 
function change_it(&$weight){
   $weight = 60;
}

change_it($w);
echo $w; //60


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
Previous article: PHP中文乱码处置 Next article: php数组处置