66¹øÀº ¸ô¶ú´ø »ç½ÇÀ̱º¿ä.
66. $a = \£§foo\£§;
$b = isSet($a[\£§bar\£§]);
what is $b? right is: TRUE
The \£§bar\£§ in $a[\£§bar\£§] evaluates to int 0 (see the PHP Cheat Sheet at http://www.blueshoes.org/en/developer/php_cheat_sheet/). Then it is $a[0] and now each character in the string $a (foo) can be accessed with its char number, like an array. So that is an \£§f\£§. And that thing is set.