PHP通过引用传递参数用法分析
本文实例讲述了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 st...