当前位置: 网学 > 编程文档 > PHP > 正文

fleaphp crud操作之find函数的使用方法

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/21

网学网PHP编辑为广大网友搜集整理了:fleaphp crud操作之find函数的使用方法绩等信息,祝愿广大网友取得需要的信息,参考学习

find函数的原型
复制代码 代码如下:
/**
* 返回符合条件的第一条记录及所有关联的数据,查询没有结果返回 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;
}

find同findAll的区别在于find少了一个参数$limit,也就是说,find只会找出符合条件的第一条记录
$conditions,
$sort = null,
$fields = ‘*''
$queryLinks = true
$conditions = null, 查询条件
通常数组,包含字段名和值
例如
复制代码 代码如下:
array(''fieldname'' => ''value1'',''fieldnameb'' => ''value2'')

$sort = null, 排序
字段以及排序的方式,通常这是一个字串
例如
复制代码 代码如下:
''ID ASC,post_date DESC'' //如果只有一个条件可以这样 ''ID ASC''

$fields = ‘*'';, 需要查询显示的字段,默认全部显示
例如
复制代码 代码如下:
array(''ID'',''post_title'',''post_parent'')

$queryLinks = true
fleaphp函数find方法的使用和示例
复制代码 代码如下:
$rowsets = $tableposts->find(array(''post_type''=>''post''),''ID ASC,post_date DESC'',array(''ID'',''post_title'',''post_parent''));
dump($rowsets);

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号