Question

I've been googling but I can't find anything.

$x->func(&$string, $str1=false, $str2=false);

what does that & before $string &$string do?

Était-ce utile?

La solution

You are assigning that array value by reference.

passing argument through reference (&$) and by $ is that when you pass argument through reference you work on original variable, means if you change it inside your function it's going to be changed outside of it as well, if you pass argument as a copy, function creates copy instance of this variable, and work on this copy, so if you change it in the function it won't be changed outside of it

Ref: http://www.php.net/manual/en/language.references.pass.php

Autres conseils

The & states that a reference to the variable should be passed into the function rather than a clone of it.

In this situation, if the function changes the value of the parameter, then the value of the variable passed in will also change.

However, you should bear in mind the following for PHP 5:

  • Call time reference (as you have shown in your example) is deprecated as of 5.3
  • Passing by reference when specified on the function signature is not deprecated, but is no longer necessary for objects as all objects are now passed by reference.

You can find more information here: http://www.php.net/manual/en/language.references.pass.php

And there's a lot of information here: Reference — What does this symbol mean in PHP?

An example of the behaviours of strings:

function changeString( &$sTest1, $sTest2, $sTest3 ) {
    $sTest1 = 'changed';
    $sTest2 = 'changed';
    $sTest3 = 'changed';
}

$sOuterTest1 = 'original';
$sOuterTest2 = 'original';
$sOuterTest3 = 'original';

changeString( $sOuterTest1, $sOuterTest2, &$sOuterTest3 );

echo( "sOuterTest1 is $sOuterTest1\r\n" );
echo( "sOuterTest2 is $sOuterTest2\r\n" );
echo( "sOuterTest3 is $sOuterTest3\r\n" );

Outputs:

C:\test>php test.php

sOuterTest1 is changed
sOuterTest2 is original
sOuterTest3 is changed

& means passing by reference:

References allow two variables to refer to the same content. In other words, a variable points to its content (rather than becoming that content). Passing by reference allows two variables to point to the same content under different names. The ampersand (&) is placed before the variable to be referenced.

It means you pass a reference to the string into the method. All changes done to the string within the method will be reflected also outside that method in your code.

See also: PHP's =& operator

Example:

$string = "test";
$x->func(&$string); // inside: $string = "test2";
echo $string; // test2

without the & operator, you would still see "test" in your variable.

& – Pass by Reference. It is passed by reference instead of string value.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top