If both isset() and empty() generate the exact same ISSET_ISEMPTY_DIM_OBJ opcode, how can the PHP VM tell the difference between the two?
This code:
empty($a['b']);
isset($a['b']);
produces the following opcodes:
ISSET_ISEMPTY_DIM_OBJ $a, b -> TMP_VAR 0
FREE TMP_VAR 0
ISSET_ISEMPTY_DIM_OBJ $a, b -> TMP_VAR 1
FREE TMP_VAR 1
Another test:
if (empty($a['b'])) {
echo 'abc';
}
if (isset($a['b'])) {
echo 'abc';
}
This produces:
ISSET_ISEMPTY_DIM_OBJ $a, b -> TMP_VAR 0
JMPZ TMP_VAR 0, &(BC4E00+4)
ECHO abc
JMP &(BC4E00+4)
ISSET_ISEMPTY_DIM_OBJ $a, b -> TMP_VAR 1
JMPZ TMP_VAR 1, &(BC4FE0+8)
ECHO abc
JMP &(BC4FE0+8)
if (…). – Gumbo Jun 4 '11 at 15:55var_dump()on the result of both functions to see if somehowisset()now does exactly whatempty()does, but no, one result wastrue, another wasfalse, both with identical opcodes... – rid Jun 4 '11 at 17:10