この記事の例では、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 中国語 Web サイト (www.php.cn) に注目してください。