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

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

WBOY
WBOYOriginal
2016-06-13 10:50:03808browse

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解释为何要用isset()