Передача по ссылке

Вы можете передавать переменные в функцию по ссылке, и функция сможет изменять свои аргументы. Синтаксис таков:

<?php
function foo(&$var)
{
    
$var++;
}

$a=5;
foo($a);
// $a здесь равно 6
?>

Замечание: В вызове функции отсутствует знак ссылки - он есть только в определении функции. Этого достаточно для корректной передачи аргументов по ссылке. Начиная с PHP 5.3.0, вы можете получить предупреждение о том, что передача переменной по ссылке устарела, если используете & в foo(&$a);. Начиная с PHP 5.4.0 передача переменной по ссылке стала невозможна, поэтому использование этого приема приведет к фатальной ошибке.

По ссылке можно передавать:

  • Переменные, например foo($a)
  • Оператор new, например foo(new foobar())
  • Ссылки, возвращаемые функцией, например:

    <?php
    function foo(&$var)
    {
        
    $var++;
    }
    function &
    bar()
    {
        
    $a 5;
        return 
    $a;
    }
    foo(bar());
    ?>
    См. также объяснение возвращения по ссылке.

Любое другое выражение не должно передаваться по ссылке, так как результат не определён. Например, следующая передача по ссылке является неправильной:

<?php
function foo(&$var)
{
    
$var++;
}
function 
bar() // Операция & отсутствует
{
    
$a 5;
    return 
$a;
}
foo(bar()); // Вызывает неисправимую ошибку начиная с PHP 5.0.5

foo($a 5); // Выражение, а не переменная
foo(5); // Константа, а не переменная
?>
Эти требования для PHP 4.0.4 и позже.

Коментарии

By removing the ability to include the reference sign on function calls where pass-by-reference is incurred (I.e., function definition uses &), the readability of the code suffers, as one has to look at the function definition to know if the variable being passed is by-ref or not (I.e., potential to be modified).  If both function calls and function definitions require the reference sign (I.e., &), readability is improved, and it also lessens the potential of an inadvertent error in the code itself.  Going full on fatal error in 5.4.0 now forces everyone to have less readable code.  That is, does a function merely use the variable, or potentially modify it...now we have to find the function definition and physically look at it to know, whereas before we would know the intent immediately.
2014-10-14 16:54:09
http://php5.kiev.ua/manual/ru/language.references.pass.html
beware unset()  destroys references

$x = 'x';
change( $x );
echo $x; // outputs "x" not "q23"  ---- remove the unset() and output is "q23" not "x"

function change( & $x )
{
    unset( $x );
    $x = 'q23';
    return true;
}
2015-05-19 22:06:22
http://php5.kiev.ua/manual/ru/language.references.pass.html
<?php 
// PHP >= 5.6

// Here we use the 'use' operator to create a variable within the scope of the function. Although it may seem that the newly created variable has something to do with '$x' that is outside the function, we are actually creating a '$x' variable within the function that has nothing to do with the '$x' variable outside the function. We are talking about the same names but different content locations in memory.
$x 10;
(function() use (
$x){
   
$x $x*$x;
   
var_dump($x); // 100
})();
var_dump($x); // 10

// Now the magic happens with using the reference (&). Now we are actually accessing the contents of the '$y' variable that is outside the scope of the function. All the actions that we perform with the variable '$y' within the function will be reflected outside the scope of this same function. Remembering this would be an impure function in the functional paradigm, since we are changing the value of a variable by reference.
$y 10;
(function() use (&
$y){
   
$y $y*$y;
   
var_dump($y); // 100
})();
var_dump($y); // 100
?>
2019-07-01 08:58:09
http://php5.kiev.ua/manual/ru/language.references.pass.html
Автор:
Within a class, passing array elements by reference which don't exist are added to the array as null. Compared to a normal function, this changes the behavior of the function from throwing an error to creating a new (null) entry in the referenced array with a new key.

<?php

class foo 
    public 
$arr = ['a' => 'apple''b' => 'banana'];
    public function 
normalFunction($key) {
        return 
$this->arr[$key];
    }
    public function &
referenceReturningFunction($key) {
        return 
$this->arr[$key];
    }
}

$bar = new foo();
$var $bar->normalFunction('beer'); //Notice Error. Undefined index beer
$var = &$bar->referenceReturningFunction('beer'); // No error. The value of $bar is now null
var_dump($bar->arr);
/**
[
  "a" => "apple",
  "b" => "banana",
  "beer" => null,
],
*/

?>
This is in no way a "bug" - the framework is performing as designed, but it took careful thought to figure out what was going on. PHP7.3
2019-11-12 20:13:29
http://php5.kiev.ua/manual/ru/language.references.pass.html
Автор:
Parameters passed by references can have default values.
You can find out if a variable was actually passed by using func_num_args():

<?php

function refault( & $ref 'Do I have to be calculated?'){
  echo 
'NUM ARGS:  'func_num_args()."\n";
  echo 
"ORI VALUE: {$ref}\n";
  if( 
func_num_args() > $ref 'Yes, expensive to calculate result: ' sleep(1);
  else 
$ref 'No.';
  echo 
"NEW VALUE: {$ref}\n";
}

$result 'Do I have to be calculated?';
refault$result );
echo 
"RESULT:    {$result}\n";
// NUM ARGS:  1
// ORI VALUE: Do I have to be calculated?
// NEW VALUE: Yes, expensive to calculate result: 0
// RESULT:    Yes, expensive to calculate result: 0

refault();
// NUM ARGS:  0
// ORI VALUE: Do I have to be calculated?
// NEW VALUE: No.
?>
2023-03-06 12:51:36
http://php5.kiev.ua/manual/ru/language.references.pass.html

    Поддержать сайт на родительском проекте КГБ