while ( is_numeric( $flyer{$idPos} )) {
//some code
}
What does $flyer{$idPos}
mean assuming both are variables?
while ( is_numeric( $flyer{$idPos} )) {
//some code
}
What does $flyer{$idPos}
mean assuming both are variables?
收起
This is an alternative, not recommendable syntax for accessing array entries:
$flyer{$idPos} === $flyer[$idPos]
报告相同问题?