条件,其中变量数组不为空,但具有NULL值

时间:2015-05-04 02:16:53

标签: php arrays zend-framework null conditional

我的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
        }

0 个答案:

没有答案