《PHP实战:Yii基于数组和对象的Model查询技巧实例详解》要点:
本文介绍了PHP实战:Yii基于数组和对象的Model查询技巧实例详解,希望对您有用。如果有疑问,可以联系我们。
相关主题:YII框架
PHP学习本文实例讲述了Yii基于数组和对象的Model查询技巧.分享给大家供大家参考,具体如下:
PHP学习对于一个Model Post 有如下的4中查询办法,返回对象或者对象数组.
PHP学习
//查找满足指定条件的结果中的第一行 find the first row satisfying the specified condition
$post=Post::model()->find($condition,$params);
//查找具有指定主键值的那一行 find the row with the specified primary key
$post=Post::model()->findByPk($postID,$condition,$params);
//查找具有指定属性值的行 find the row with the specified attribute values
$post=Post::model()->findByAttributes($attributes,$condition,$params);//未找到返回null
//通过指定的SQL 语句查找结果中的第一行 find the first row using the specified SQL statement
$post=Post::model()->findBySql($sql,$params);
PHP学习如果find 办法找到了一个满足查询条件的行,它将返回一个Post 实例,实例的属性含有数据表行中相应列的值.然后我们就可以像读取普通对象的属性那样读取载入的值,例如echo $post->title;.如果使用给定的查询条件在数据库中没有找到任何东西, find 办法将返回null.
PHP学习调用find 时,我们使用$condition 和$params 指定查询条件.此处$condition 可以是SQL 语句中的WHERE 字符串,$params 则是一个参数数组,其中的值应绑定到$condation 中的占位符.例如:假设我们查询postID = 10的数据
PHP学习
// find the row with postID=10
$post=Post::model()->find('postID=:postID', array(':postID'=>10));
PHP学习条件$condition 就是我们sql里的where部分,那参数怎么办呢,通过params传递,不过名字是加了":"的.
PHP学习YII有个CDbCriteria类来构造查询,如果我们查询postId为10的title,CdbCriteria是这样构造的
PHP学习
$criteria=new CDbCriteria;
$criteria->select='title'; // only select the 'title' column
$criteria->condition='postID=:postID';
$criteria->params=array(':postID'=>10);
$post=Post::model()->find($criteria); // $params is not needed
PHP学习一种替代CDbCriteria 的办法是给find 办法传递一个数组.数组的键和值各自对应标准( criterion)的属性名和值,上面的例子可以重写为如下:
PHP学习
$post=Post::model()->find(array(
'select'=>'title',
'condition'=>'postID=:postID',
'params'=>array(':postID'=>10),
));
PHP学习当然也适用于findAll()
PHP学习
self::$_items[$type]=array();
$models=self::model()->findAll(array(
'condition'=>'type=:type',
'params'=>array(':type'=>$type),
'order'=>'position',
));
PHP学习当一个查询条件是关于按指定的值匹配几个列时,我们可以使用findByAttributes().我们使$attributes 参数是一个以列名做索引的值的数组.
findByAttributes 里的$attributes就是字段的名字.查询title为abc怎么查询呢?见下面
PHP学习其它办法:
PHP学习1、$admin=Admin::model()->findAll($condition,$params);
PHP学习该办法是根据一个条件查询一个集合,如:
PHP学习该办法是根据条件查询一个集合,可以是多个条件,把条件放到数组里面,如:
PHP学习该办法是根据SQL语句查询一个数组,如:
PHP学习二、查询对像的办法
PHP学习1、$admin=Admin::model()->findByPk($postID,$condition,$params);
PHP学习根据主键查询出一个对象,如:
PHP学习根据一个条件查询出一组数据,可能是多个,但是他只返回第一行数据,如:
PHP学习该办法是根据条件查询一组数据,可以是多个条件,把条件放到数组里面,他查询的也是第一条数据,如:
PHP学习该办法是根据SQL语句查询一组数据,他查询的也是第一条数据,如:
PHP学习
$criteria=new CDbCriteria;
$criteria->select='username'; // only select the 'title' column
$criteria->condition='username=:username';
$criteria->params=array(':username=>'admin');
$post=Post::model()->find($criteria); // $params is not needed
PHP学习三、查询个数,判断查询是否有结果
PHP学习1、$n=Post::model()->count($condition,$params);
PHP学习该办法是根据一个条件查询一个集合有多少条记录,返回一个int型数字,如
PHP学习该办法是根据SQL语句查询一个集合有多少条记录,返回一个int型数字,如
PHP学习四、添加的办法
PHP学习
$admin=new Admin;
$admin->username=$username;
$admin->password=$password;
if($admin->save()>0){
echo "添加成功";
}else{
echo "添加失败";
}
PHP学习五、修改的办法
PHP学习1、Post::model()->updateAll($attributes,$condition,$params);
PHP学习
$count = Admin::model()->updateAll(array('username'=>'11111','password'=>'11111'),'password=:pass',array(':pass'=>'1111a1'));
if($count>0){
echo "修改成功";
}else{
echo "修改失败";
}
PHP学习2、Post::model()->updateByPk($pk,$attributes,$condition,$params);
PHP学习
$count = Admin::model()->updateByPk(1,array('username'=>'admin','password'=>'admin'));
$count = Admin::model()->updateByPk(array(1,2),array('username'=>'admin','password'=>'admin'),'username=:name',array(':name'=>'admin'));
if($count>0){
echo "修改成功";
}else{
echo "修改失败";
}
PHP学习$pk代表主键,可以是一个也可以是一个集合,$attributes代表是要修改的字段的集合,$condition代表条件,$params传入的值
PHP学习3、Post::model()->updateCounters($counters,$condition,$params);
PHP学习
$count =Admin::model()->updateCounters(array('status'=>1),'username=:name',array(':name'=>'admin'));
if($count>0){
echo "修改成功";
}else{
echo "修改失败";
}
PHP学习array('status'=>1)代表数据库中的admin表根据条件username='admin',查询出的所有结果status字段都自加1
PHP学习六、删除的办法
PHP学习1、Post::model()->deleteAll($condition,$params);
PHP学习
$count = Admin::model()->deleteAll('username=:name and password=:pass',array(':name'=>'admin',':pass'=>'admin'));
$id=1,2,3
deleteAll('id in(".$id.")');删除id为这些的数据
if($count>0){
echo "删除成功";
}else{
echo "删除失败";
}
PHP学习2、Post::model()->deleteByPk($pk,$condition,$params);
PHP学习
$count = Admin::model()->deleteByPk(1);
$count = Admin::model()->deleteByPk(array(1,2),'username=:name',array(':name'=>'admin'));
if($count>0){
echo "删除成功";
}else{
echo "删除失败";
}
PHP学习希望本文所述对大家基于Yii框架的PHP程序设计有所赞助.
欢迎参与《PHP实战:Yii基于数组和对象的Model查询技巧实例详解》讨论,分享您的想法,维易PHP学院为您提供专业教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/7978.html