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