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

WBOY
Release: 2016-06-13 10:50:03
Original
805 people have browsed it

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

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

$w = 65; function change_it(&$weight){   $weight = 60;}change_it($w);echo $w; //60
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!