上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: class Ran extends Model { //模型Ran需要加入的方法 ranchang 这个名称随便取 //Ranchang 是关联的模型名 ranchang_id是外键 id是主键 LEFT是join类型 //setEagerlyType(0) 设置预载入方式 2个值 0 是JOIN方 阅读全文
posted @ 2023-10-09 09:29 blog_zss小帅-博客猿 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 1、以下两种情况中,关联预载入两个表时,想要约束查询字段。thinkphp5.0中的方法失效,需要用以下方法withField,没有时间去研究具体的原因。 ->with(['user'=>function($query){$query->field('id,username,nickname,pre 阅读全文
posted @ 2023-10-09 09:20 blog_zss小帅-博客猿 阅读(186) 评论(0) 推荐(0) 编辑
摘要: $list = User::field('id,name')->with(['profile'=>function($query){$query->field('email,phone');}])->select([1,2,3]); foreach($list as $user){ // 获取用户关 阅读全文
posted @ 2023-10-09 09:15 blog_zss小帅-博客猿 阅读(272) 评论(0) 推荐(0) 编辑
摘要: public function index() { //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { //如果发送的来源是Selectpage,则转发到Selectpage 阅读全文
posted @ 2023-10-09 09:14 blog_zss小帅-博客猿 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 一、安装PHP的redis扩展 1)PHP的redis扩展有2个,分别是phpredis和predis扩展; phpredis是PHP官方推荐的,是C写的; predis使用的原生的PHP代码实现的一套Redis-client程序,可以不用安装任何扩展,只引入php代码就可以很方便的使用redis。 阅读全文
posted @ 2023-10-07 11:45 blog_zss小帅-博客猿 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 一、前言window.location.href 是一个用于获取当前页面 URL 或让浏览器跳转到新 URL 的重要方法,是 window.location 对象的属性。它返回一个字符串,表示当前页面的 URL;同时,当通过将 URL 指定给 window.location.href 时,可以让浏览 阅读全文
posted @ 2023-07-28 15:26 blog_zss小帅-博客猿 阅读(299) 评论(0) 推荐(0) 编辑
摘要: $test = '/home/test/test.txt'; $result = substr($test,0,strrpos($test,"/")); echo $result; $number = '/home/test/test.txt'; $result = substr($number,s 阅读全文
posted @ 2023-07-04 11:53 blog_zss小帅-博客猿 阅读(4) 评论(0) 推荐(0) 编辑
摘要: //$arr = array(); //if(!empty($arr)){ //foreach ($arr as $key => $value) { //foreach ($value['productList'] as $k => $v) { //$list[] = $v; //} //} //} 阅读全文
posted @ 2023-07-04 11:50 blog_zss小帅-博客猿 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 这个世界只有三件事:自己的事、别人的事、老天的事。这三件事已经清晰划分了我们自己的界限。 自己的事,只能自己做,不要依附他人。 别人的事,作为一个旁观者只需做到尊重和接受,没有任何资格去强加干涉。 老天的事,我们就好好配合,天下雨就要打伞出去,温度低了就多穿衣服。 阅读全文
posted @ 2023-02-02 16:05 blog_zss小帅-博客猿 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 人性都是恐惧而摇摆的,如你能坚定而无畏,便能更好地驾驭人。你若坚定,众人便会追随;你若无畏,众生便会让道。 讲一个真实的故事。上海滩的大佬杜月笙 ,最开始去到上海滩时 ,只是一个穷困潦倒的瘦弱少年,在上海滩有名的黄公馆做随从。 就这么一个平凡的少年如何逆袭成为上海滩的大佬呢 ?因为杜月笙发现了人性的 阅读全文
posted @ 2023-02-02 15:56 blog_zss小帅-博客猿 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页