catid = "someid"の配列をフェッチする方法は?
私はこれを試しましたが、うまくいきませんでした
public function findCatArr($catid)
{
$select = $this->getDbTable()->select();
$select->setIntegrityCheck(false);
$select->from('photo',array('id','catid','pic','desc'
))->where("catid"." LIKE '%".$catid."%'");
$row = $this->getDbTable()->fetchAll($select);
if (0 == count($row)) {
return;
}else{
return $row->toArray();
}
}