上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: $file=Db::table('zw_file')->select(); $status1=$file->where('status',1); $status2=$file->where('status',2)->count(); halt($status1); 先查询所有数据,再进行筛选等处理, 阅读全文
posted @ 2020-09-09 10:49 CanyingV 阅读(384) 评论(0) 推荐(0) 编辑
摘要: <?php namespace app\admin\service; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; class Email { public function sendEmail($emai 阅读全文
posted @ 2020-08-25 10:17 CanyingV 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 创建验证器 在app目录下生成验证器类 php think make:validate admin/User 在应用目录下生成验证器类 php think make:validate admin@User //独立验证$validate=new \app\ddapi\validate\Report( 阅读全文
posted @ 2020-08-15 10:23 CanyingV 阅读(209) 评论(0) 推荐(0) 编辑
摘要: class Work extends Model { protected $table='work'; protected $connection='zwhl'; public function follow(){ return $this->hasMany('WorkFollow','work_i 阅读全文
posted @ 2020-08-12 15:02 CanyingV 阅读(118) 评论(0) 推荐(0) 编辑
摘要: http://jsonhandle.sinaapp.com/ 阅读全文
posted @ 2020-08-11 14:54 CanyingV 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1.方式一 //登录 public function login(){ $config=config('ding'); $app = new Application($config); $response = $app->oauth->use('app-01')->withQrConnect()-> 阅读全文
posted @ 2020-08-11 09:05 CanyingV 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 1.微信支付宝支付 composer require yansongda/pay 2.Token 加密 composer require firebase/php-jwt 3.钉钉开发 composer require mingyoung/dingtalk 4.微信开发 composer requi 阅读全文
posted @ 2020-08-06 23:08 CanyingV 阅读(330) 评论(0) 推荐(0) 编辑
摘要: (1)引入带命名空间的自定义类 1.在composer.json中注册自动加载,然后composer update更新一下 "autoload": { "psr-4": { "app\\": "app" }, "psr-0": { "": "extend/" }}, 2.创建自定义类 3. 控制器中 阅读全文
posted @ 2020-08-06 22:47 CanyingV 阅读(1122) 评论(0) 推荐(0) 编辑
摘要: 多应用路由1.应用里的路由在对应的应用里创建路由,如index应用则app\index\route\file_name.phpRoute::rule('路由名', '类文件名/方法名'); 访问: 域名/应用名/路由名 2.全局路由(不能开启快速访问)在app\route\file_name.php 阅读全文
posted @ 2020-08-06 13:12 CanyingV 阅读(342) 评论(0) 推荐(0) 编辑
摘要: $data=Request::post(); $oldimg=public_path()."storage/".ProductModel::find($data['id'])->img; if(file_exists($oldimg)){ unlink($oldimg); } try { // 获取 阅读全文
posted @ 2020-08-05 09:45 CanyingV 阅读(1015) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页