Quiz Question
Posted: Fri Jul 14, 2006 3:31 pm
No testing the code, now! That's cheating.
Code: Select all
$bar['5'] = 12;
$bar[5] = 10;
$foo = $bar['5'];A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$bar['5'] = 12;
$bar[5] = 10;
$foo = $bar['5'];yep it is. which is why its amazing i'd never noticed it before.It's talked about a little bit in the array section of the manual. In fact