Home  >  Article  >  Backend Development  >  PHP传参之传值与传址的区别_PHP

PHP传参之传值与传址的区别_PHP

WBOY
WBOYOriginal
2016-05-30 15:09:17700browse

废话不多说,先来看段代码

function test(&val){
return $val;
}

其中为什么用到&进行传参呢,有什么好处?

传址是允许在函数内部进行改变的意思,比如:

$test = "hello";
function myFun(&$val){
$val = "hello world";
return $val;
}
echo myFun(&$test); //hello world
echo $test;         //hello world

以上所述就是本文的全部内容了,希望大家能够喜欢。

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