程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP通過引用傳遞參數用法分析,php傳遞參數用法

PHP通過引用傳遞參數用法分析,php傳遞參數用法

編輯:關於PHP編程

PHP通過引用傳遞參數用法分析,php傳遞參數用法


本文實例講述了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常用函數與技巧總結》、《php面向對象程序設計入門教程》、《PHP數學運算技巧總結》、《PHP數組(Array)操作技巧大全》、《PHP數據結構與算法教程》、《php程序設計算法總結》、《php正則表達式用法總結》及《php常見數據庫操作技巧匯總》

希望本文所述對大家PHP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved