Voting

: max(four, one)?
(Example: nine)

The Note You're Voting On

phatsk+php at gmail dot com
7 years ago
Using extract's return parameter can lead to unintended results, particularly with EXTR_REFS:

<?php

$my_data
= [
'count' => 15,
'name' => 'foo',
];

$count = extract( $my_data, EXTR_REFS );

echo
$my_data['count']; // 2, not 15.

<< Back to user notes page

To Top