使用花括号混淆这个PHP代码

时间:2013-10-15 13:35:05

标签: php curly-braces

while ( is_numeric( $flyer{$idPos} )) {
    //some code
}

假设两者都是变量,$flyer{$idPos}意味着什么?

2 个答案:

答案 0 :(得分:4)

这是访问数组条目的替代方法,不推荐使用语法:

$flyer{$idPos} === $flyer[$idPos]

答案 1 :(得分:0)

大括号是一种访问字符串特定字符的方法

$str = 'Bob';
echo $str{0}; // outputs B