PHP 8.5.0 Alpha 1 available for testing

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

arne dot slabbinck at duo dot be
9 years ago
Info:

Following code gives a strict warning in 5.4.45

return reset(array_keys($result['node']));

"Strict warning: Only variables should be passed by reference"

So should be:

$keys = array_keys($result['node']);
return reset($keys);

<< Back to user notes page

To Top