if ($tx)
This code will evaluate to false for any of the following conditions:
unset($tx); // not set, will also produce E_WARNING
$tx = null;
$tx = 0;
$tx = '0';
$tx = false;
$tx = array();
The code below will only evaluate to false under the following conditions:
if (isset($tx))
// False under following conditions:
unset($tx); // not set, no warning produced
$tx = null;
For some people, typing is very important. However, PHP by design is very flexible with variable types. That is why the Variable Handling Functions have been created.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…