update page now
Laravel Live Japan

Voting

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

The Note You're Voting On

edouard dot berge at gmail dot com
15 years ago
Warning!

When unset from an array, if you unset all elements, the array is always set

$tab=array('A'=>1,'B'=>2);
unset($tab['A']);
unset($tab['B']);
echo isset($tab)." ".count($tab);

output: 1 0

<< Back to user notes page

To Top