本文實例講述了PHP透過引用傳遞參數用法。分享給大家供大家參考,具體如下:
先看一個手冊上的範例:
<?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.' ?>
#輸出:
This is a string, and something extra.
如果沒有這個&符號,
<?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, ' ?>
#輸出:
This is a string,
以上就是PHP透過引用傳遞參數用法分析 的內容,更多相關內容請關注PHP中文網(www.php.cn)!