PHP 8.5.0 Alpha 4 available for testing

Voting

: max(nine, zero)?
(Example: nine)

The Note You're Voting On

Andrew
16 years ago
What References are not: References.

References are opaque things that are like pointers, except A) smarter and B) referring to HLL objects, rather than memory addresses. PHP doesn't have references. PHP has a syntax for creating *aliases* which are multiple names for the same object. PHP has a few pieces of syntax for calling and returning "by reference", which really just means inhibiting copying. At no point in this "references" section of the manual are there any references.

<< Back to user notes page

To Top