Computer >> Máy Tính >  >> Lập trình >> PHP

Làm thế nào để truyền tham số tham chiếu PHP?

Trong PHP, sử dụng tham số hàm &$ in để chuyển các tham số tham chiếu.

Ví dụ

Mã PHP như sau

<!DOCTYPE html>
<html>
<body>
<?php
function referenceDemo(&$number){
   $number=$number+100;
   return $number;
}
$number=900;
echo "The actual value is=",$number,"<br>";
$result=referenceDemo($number);
echo "The modified value is=",$result;
?>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau

The actual value is=900
The modified value is=1000