Fix #72656: Object destructor called before constructor

We just need to document PHP's eager evaluation strategy; the rest is
already documented.
This commit is contained in:
Christoph M. Becker 2021-08-27 13:12:20 +02:00
parent 3926279f82
commit 06126805f4
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6

View file

@ -175,7 +175,8 @@ function recursion($a)
<simpara>
Information may be passed to functions via the argument list,
which is a comma-delimited list of expressions. The arguments are
evaluated from left to right.
evaluated from left to right, before the function is actually called
(<emphasis>eager</emphasis> evaluation).
</simpara>
<para>