mongo Table类文件 获取MongoCursor(游标)的实现方法分析(2)_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:计算php页面运行时间的函数介绍
本篇文章是对计算php页面运行时间的函数进行了详细的分析介绍,需要的朋友参考下 一个计算php页面运行时间的函数。 复制代码 代码如下: ?php /* @ 计算php程序运行时间 */ function microtime_float() { list($usec, $sec) = explode( , microtime()); return ((float)$


要点注意!!!
第一种方法

复制代码 代码如下:
//find cursor
/*
* 获取游标对象
*/
public function look($where=array(),$fields=array()){
if($this->testLink()) {
if($fields){
return $where ? $this->_db->find($where,$fields): $this->_db->find()->fields($fields);
}else{
return $where ? $this->_db->find($where) : $this->_db->find();
}
}
return false;
}


第二种方法

复制代码 代码如下:
public function find($where=array(),$field=array()){
if($this->testLink()) {
$this->_data = $this->_db->find($where,$field)->sort(array("_id" => -1));
}
return $this;
}

 

复制代码 代码如下:
/*
* 获取游标对象
*/
public function getCursor(){
return $this->_data;
}


第二种需要的是find得到的不是数组
find($where)->getCursor();是MongoCursor Object

分享:php 地区分类排序算法
本篇文章是对使用php实现地区分类排序算法进行了详细的分析介绍,需要的朋友参考下 写一个函数,将数据 $array = array( 0=array(,河北), 1=array(,北京), 2=array(0,保定), 3=array(1,海淀), 4=array(3,中关村), 5=array(2,涿州) ); 处理后返回如下: 河北 -保定 --涿

共2页上一页12下一页
来源:模板无忧//所属分类:PHP教程/更新时间:2013-07-03
相关PHP教程