本文介绍了PHP变量是按值还是按引用传递?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

PHP变量是按值还是按引用传递?

Are PHP variables passed by value or by reference?

推荐答案

根据 PHP文档.

要使函数的参数始终通过引用传递,请在函数定义中的参数名称前加上与号(& ).

To have an argument to a function always passed by reference, prepend an ampersand (&) to the argument name in the function definition.

<?php
function add_some_extra(&$string)
{
    $string .= 'and something extra.';
}

$str = 'This is a string, ';
add_some_extra($str);
echo $str;    // outputs 'This is a string, and something extra.'
?>

这篇关于PHP变量是按值还是按引用传递?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-19 02:04