我的php函数中存在以下问题:
$ items是一个数组。它永远不会为空,但有时它只有NULL值,返回数组值[0]。如何将条件转换为:如果$ items不为空且$ items数组未返回值[0],则执行此操作。 。 。 ?
感谢。
$items = Items_Model_Item::findBy(array('where' => new JO_Db_Expr('item.id IN (SELECT id FROM dbtable WHERE challengeId LIKE ' . Helper_Db::quote($challengeIDPLUS['code']) . ')')));
if (!empty($items)) {
foo
} else {
bar
}