本文實例講述了PHP通過引用傳遞參數用法。分享給大家供大家參考,具體如下:
先看一個手冊上的示例:
<?phpfunction 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.
如果沒有這個&符號,
<?phpfunction 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程序設計有所幫助。
新聞熱點
疑難解答
圖片精選