首页 > 作文

YII框架关联查询操作示例

更新时间:2023-04-07 10:22:39 阅读: 评论:0

本文实例讲述了yii框架关联查询操作。分享给大家供大家参考,具体如下:

以customer order两个表为例

关联查询控制器中

$customer = customer::find()->where('name'=>'zhangsan')->one();$orders = $customer->hasmany('orders',['customer_id']=>'id')-across和through的区别>asarray()->all();$orders = $custo质证意见mer->hasmany(order::classname(),['customer_id']=>'id')->asarray()->all();

customer模型中(优化)

public function getorders(){  $orders = $this->hasmany('orders',['customer_id']=>'id')->asarray()->all();}

关联查询控制器中就可以这么写

$customer = customer::find()->where('name其皆出于此乎的其'=>'zhangsan')->one();$orders = $customer->getorders();

甚至可以这么写

$orders = $customer->orders;

当获取未定义的类属性时会触发类的__get()魔术方法效果 yii会自动调用 getorders()方法,而且会加上->all(),所以定义getorders()时不能带上alback什么意思l()

order模型

public function getcustomer(){  $this->hasone(customer::classname,['id'=>'customer_id'])->asarray();}

关联查询控制器中这么写

$order = order::find()->where("id"=>'1')->one();$customer = $order->customer;

注意点

1.关腊八粥最早起源于联查询会被缓存

所以

$customer = customer::find()->where('name'=>'zhangsan')->one();unt($customer->orders);//清掉缓存$order = $customer->orders;

2.关联查询的多次查询

$customers = customer::find()->all();//lect * from customerforeach($customers as $customer){$order = $customer->orders;//lect * from order where customer_id = ...}

以上代码执行了101次sql查询,可以进行如下优化

$customers = customer::find()->with('orders')->all();//lect * from customerforeach($customers as $customer){$order = $customer->orders();//lect * from order where customer_id in (...)}//变成了2次查询

更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家基于yii框架的php程序设计有所帮助。

本文发布于:2023-04-07 10:22:37,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/1eba974f1098815fe073f3464cc41db7.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:YII框架关联查询操作示例.doc

本文 PDF 下载地址:YII框架关联查询操作示例.pdf

标签:框架   器中   缓存   程序设计
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图