1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<chapter xml:id="language.references" xmlns="http://docbook.org/ns/docbook">
<title>References Explained</title>
<sect1 xml:id="language.references.whatare">
<title>What References Are</title>
<simpara>
References in PHP are a means to access the same variable content
by different names. They are not like C pointers; for instance,
you cannot perform pointer arithmetic using them, they are not
actual memory addresses, and so on. See
<xref linkend="language.references.arent" /> for more
information. Instead, they are
<link linkend="features.gc.refcounting-basics">symbol table</link>
aliases. Note that in PHP, variable name and variable content are different, so the same
content can have different names. The closest analogy is with
Unix filenames and files - variable names are directory entries,
while variable content is the file itself. References can be
likened to hardlinking in Unix filesystem.
</simpara>
</sect1>
<sect1 xml:id="language.references.whatdo">
<title>What References Do</title>
<para>
There are three basic operations performed using references:
<link linkend="language.references.whatdo.assign">assigning by
reference</link>, <link linkend="language.references.whatdo.pass">passing
by reference</link>,
and <link linkend="language.references.whatdo.return">returning by
reference</link>. This section will give an introduction to these
operations, with links for further reading.
</para>
<sect2 xml:id="language.references.whatdo.assign">
<title>Assign By Reference</title>
<para>
In the first of these, PHP references allow you to make two
variables refer to the same content. Meaning, when you do:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$a =& $b;
?>
]]>
</programlisting>
</informalexample>
it means that <varname>$a</varname> and <varname>$b</varname>
point to the same content.
<note>
<para>
<varname>$a</varname> and <varname>$b</varname> are completely
equal here. <varname>$a</varname> is not pointing to
<varname>$b</varname> or vice versa.
<varname>$a</varname> and <varname>$b</varname> are pointing to the
same place.
</para>
</note>
</para>
<note>
<para>
If you assign, pass, or return an undefined variable by reference,
it will get created.
<example>
<title>Using references with undefined variables</title>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var) {}
foo($a); // $a is "created" and assigned to null
$b = array();
foo($b['b']);
var_dump(array_key_exists('b', $b)); // bool(true)
$c = new stdClass();
foo($c->d);
var_dump(property_exists($c, 'd')); // bool(true)
?>
]]>
</programlisting>
</example>
</para>
</note>
<para>
The same syntax can be used with functions that return
references:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$foo =& find_var($bar);
?>
]]>
</programlisting>
</informalexample>
</para>
<para>
Using the same syntax with a function that does <emphasis>not</emphasis>
return by reference will give an error, as will using it with the result
of the <link linkend="language.oop5.basic.new">new</link> operator.
Although objects are passed around as pointers, these are not the same as references,
as explained under <link linkend="language.oop5.references">Objects and references</link>.
</para>
<warning>
<para>
If you assign a reference to a variable declared <literal>global</literal>
inside a function, the reference will be visible only inside the function.
You can avoid this by using the <varname>$GLOBALS</varname> array.
<example>
<title>Referencing global variables inside functions</title>
<programlisting role="php">
<![CDATA[
<?php
$var1 = "Example variable";
$var2 = "";
function global_references($use_globals)
{
global $var1, $var2;
if (!$use_globals) {
$var2 =& $var1; // visible only inside the function
} else {
$GLOBALS["var2"] =& $var1; // visible also in global context
}
}
global_references(false);
echo "var2 is set to '$var2'\n"; // var2 is set to ''
global_references(true);
echo "var2 is set to '$var2'\n"; // var2 is set to 'Example variable'
?>
]]>
</programlisting>
</example>
Think about <literal>global $var;</literal> as a shortcut to <literal>$var
=& $GLOBALS['var'];</literal>. Thus assigning another reference
to <literal>$var</literal> only changes the local variable's reference.
</para>
</warning>
<note>
<para>
If you assign a value to a variable with references in a
&foreach; statement, the references are modified too.
<example>
<title>References and foreach statement</title>
<programlisting role="php">
<![CDATA[
<?php
$ref = 0;
$row =& $ref;
foreach (array(1, 2, 3) as $row) {
// Do something
}
echo $ref; // 3 - last element of the iterated array
?>
]]>
</programlisting>
</example>
</para>
</note>
<para>
While not being strictly an assignment by reference, expressions created
with the language construct
<link linkend="function.array"><literal>array()</literal></link> can also
behave as such by prefixing <literal>&</literal> to the array element
to add. Example:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$a = 1;
$b = array(2, 3);
$arr = array(&$a, &$b[0], &$b[1]);
$arr[0]++;
$arr[1]++;
$arr[2]++;
/* $a == 2, $b == array(3, 4); */
?>
]]>
</programlisting>
</informalexample>
</para>
<para>
Note, however, that references inside arrays are potentially dangerous.
Doing a normal (not by reference) assignment with a reference on the
right side does not turn the left side into a reference, but references
inside arrays are preserved in these normal assignments. This also applies
to function calls where the array is passed by value. Example:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
/* Assignment of scalar variables */
$a = 1;
$b =& $a;
$c = $b;
$c = 7; // $c is not a reference; no change to $a or $b
/* Assignment of array variables */
$arr = array(1);
$a =& $arr[0]; // $a and $arr[0] are in the same reference set
$arr2 = $arr; // Not an assignment-by-reference!
$arr2[0]++;
/* $a == 2, $arr == array(2) */
/* The contents of $arr are changed even though it's not a reference! */
?>
]]>
</programlisting>
</informalexample>
In other words, the reference behavior of arrays is defined in an
element-by-element basis; the reference behavior of individual elements
is dissociated from the reference status of the array container.
</para>
</sect2>
<sect2 xml:id="language.references.whatdo.pass">
<title>Pass By Reference</title>
<para>
The second thing references do is to pass variables by
reference. This is done by making a local variable in a function
and a variable in the calling scope referencing the same
content. Example:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var)
{
$var++;
}
$a=5;
foo($a);
?>
]]>
</programlisting>
</informalexample>
will make <varname>$a</varname> to be 6. This happens because in
the function <varname>foo</varname> the variable
<varname>$var</varname> refers to the same content as
<varname>$a</varname>. For more information on this, read
the <link linkend="language.references.pass">passing by
reference</link> section.
</para>
</sect2>
<sect2 xml:id="language.references.whatdo.return">
<title>Return By Reference</title>
<para>
The third thing references can do is <link
linkend="language.references.return">return by reference</link>.
</para>
</sect2>
</sect1>
<sect1 xml:id="language.references.arent">
<title>What References Are Not</title>
<para>
As said before, references are not pointers. That means, the
following construct won't do what you expect:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var)
{
$var =& $GLOBALS["baz"];
}
foo($bar);
?>
]]>
</programlisting>
</informalexample>
</para>
<simpara>
What happens is that <varname>$var</varname> in
<varname>foo</varname> will be bound with
<varname>$bar</varname> in the caller, but then
re-bound with <varname>$GLOBALS["baz"]</varname>. There's no way
to bind <varname>$bar</varname> in the calling scope to something else
using the reference mechanism, since <varname>$bar</varname> is not
available in the function <varname>foo</varname> (it is represented by
<varname>$var</varname>, but <varname>$var</varname> has only
variable contents and not name-to-value binding in the calling
<link linkend="features.gc.refcounting-basics">symbol table</link>).
You can use <link linkend="language.references.return">returning
references</link> to reference variables selected by the function.
</simpara>
</sect1>
<sect1 xml:id="language.references.pass">
<title>Passing by Reference</title>
<para>
You can pass a variable by reference to a function so the function
can modify the variable. The syntax is as follows:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var)
{
$var++;
}
$a=5;
foo($a);
// $a is 6 here
?>
]]>
</programlisting>
</informalexample>
<note>
<simpara>
There is no reference sign on a function call - only on
function definitions. Function definitions alone are enough to
correctly pass the argument by reference.
</simpara>
</note>
</para>
<para>
The following things can be passed by reference:
<itemizedlist>
<listitem>
<simpara>
Variables, i.e. <literal>foo($a)</literal>
</simpara>
</listitem>
<listitem>
<para>
References returned from functions, i.e.:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var)
{
$var++;
}
function &bar()
{
$a = 5;
return $a;
}
foo(bar());
?>
]]>
</programlisting>
</informalexample>
See more about <link
linkend="language.references.return">returning by reference</link>.
</para>
</listitem>
</itemizedlist>
</para>
<para>
No other expressions should be passed by reference, as the
result is undefined. For example, the following examples of passing
by reference are invalid:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function foo(&$var)
{
$var++;
}
function bar() // Note the missing &
{
$a = 5;
return $a;
}
foo(bar()); // Produces a notice
foo($a = 5); // Expression, not variable
foo(5); // Produces fatal error
class Foobar {}
foo(new Foobar()) // Produces a notice as of PHP 7.0.7
// Notice: Only variables should be passed by reference
?>
]]>
</programlisting>
</informalexample>
</para>
</sect1>
<sect1 xml:id="language.references.return">
<title>Returning References</title>
<para>
Returning by reference is useful when you want to use a function
to find to which variable a reference should be bound. Do
<emphasis>not</emphasis> use return-by-reference to increase performance.
The engine will automatically optimize this on its own. Only return
references when you have a valid technical reason to do so. To
return references, use this syntax:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
class Foo
{
public $value = 42;
public function &getValue()
{
return $this->value;
}
}
$obj = new Foo();
$myValue = &$obj->getValue(); // $myValue is a reference to $obj->value, which is 42
$obj->value = 2;
echo $myValue; // Prints the new value of $obj->value, i.e. 2
?>
]]>
</programlisting>
</informalexample>
In this example, the property of the object returned by the
<varname>getValue</varname> function would be set, not the
copy, as it would be without using reference syntax.
</para>
<note>
<simpara>
Unlike parameter passing, here you have to use
<literal>&</literal> in both places - to indicate that you
want to return by reference, not a copy, and to indicate that
reference binding, rather than usual assignment, should be done
for <varname>$myValue</varname>.
</simpara>
</note>
<note>
<simpara>
If you try to return a reference from a function with the syntax:
<literal>return ($this->value);</literal> this will <emphasis>not</emphasis>
work as you are attempting to return the result of an
<emphasis>expression</emphasis>, and not a variable, by reference. You can
only return variables by reference from a function - nothing else.
</simpara>
</note>
<para>
To use the returned reference, you must use reference assignment:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function &collector()
{
static $collection = array();
return $collection;
}
$collection = &collector();
// Now the $collection is a referenced variable that references the static array inside the function
$collection[] = 'foo';
print_r(collector());
// Array
// (
// [0] => foo
// )
?>
]]>
</programlisting>
</informalexample>
<note>
<simpara>
If the assignment is done without the <literal>&</literal> symbol, e.g. <code>$collection = collector();</code>,
the <varname>$collection</varname> variable will receive a copy of the value, not the reference returned by the function.
</simpara>
</note>
To pass the returned reference to another function expecting a reference
you can use this syntax:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
function &collector()
{
static $collection = array();
return $collection;
}
array_push(collector(), 'foo');
?>
]]>
</programlisting>
</informalexample>
</para>
<note>
<simpara>
Note that <literal>array_push(&collector(), 'foo');</literal> will
<emphasis>not</emphasis> work, it results in a fatal error.
</simpara>
</note>
</sect1>
<sect1 xml:id="language.references.unset">
<title>Unsetting References</title>
<para>
When you unset the reference, you just break the binding between
variable name and variable content. This does not mean that
variable content will be destroyed. For example:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$a = 1;
$b =& $a;
unset($a);
?>
]]>
</programlisting>
</informalexample>
won't unset <varname>$b</varname>, just <varname>$a</varname>.
</para>
<simpara>
Again, it might be useful to think about this as analogous to the Unix
<command>unlink</command> call.
</simpara>
</sect1>
<sect1 xml:id="language.references.spot">
<title>Spotting References</title>
<simpara>
Many syntax constructs in PHP are implemented via referencing
mechanisms, so everything mentioned herein about reference binding also
applies to these constructs. Some constructs, like passing and
returning by reference, are mentioned above. Other constructs that
use references are:
</simpara>
<sect2 xml:id="references.global">
<title>global References</title>
<para>
When you declare a variable as <command>global $var</command> you
are in fact creating reference to a global variable. That means,
this is the same as:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$var =& $GLOBALS["var"];
?>
]]>
</programlisting>
</informalexample>
</para>
<simpara>
This also means that unsetting <varname>$var</varname>
won't unset the global variable.
</simpara>
</sect2>
</sect1>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|