PHP 8.5.0 Alpha 4 available for testing

Voting

: eight minus eight?
(Example: nine)

The Note You're Voting On

geompse at gmail dot com
15 years ago
Note that $length is calculated (php5.3.2).
Iterating over a large NodeList may be time expensive.

Prefer :
$nb = $nodelist->length;
for($pos=0; $pos<$nb; $pos++)

Than:
for($pos=0; $pos<$nodelist->length; $pos++)

I had a hard time figuring that out...

<< Back to user notes page

To Top