PHP100 2019-03-27
代码如下:
/** * 返回符合条件的第一条记录及所有关联的数据,查询没有结果返回 false * * @param mixed $conditions * @param string $sort * @param mixed $fields * @param mixed $queryLinks * * @return array */ function & find($conditions, $sort = null, $fields = '*', $queryLinks = true) { $rowset =& $this->findAll($conditions, $sort, 1, $fields, $queryLinks); if (is_array($rowset)) { $row = reset($rowset); } else { $row = false; } unset($rowset); return $row; }
代码如下:
array('fieldname' => 'value1','fieldnameb' => 'value2')
代码如下:
'ID ASC,post_date DESC' //如果只有一个条件可以这样 'ID ASC'
代码如下:
array('ID','post_title','post_parent')
代码如下:
$rowsets = $tableposts->find(array('post_type'=>'post'),'ID ASC,post_date DESC',array('ID','post_title','post_parent')); dump($rowsets);