php
Martin Wu
这个作者很懒,什么都没留下…
展开
-
nginx 配置https
server { listen 80; server_name www.wubuze.top; rewrite ^(.*) https://$host$1 permanent;}server { listen 80; server_name wubuze.top; rewrite ^(.*) https://www.wubuze.top$1 permanent;...原创 2020-03-23 17:59:06 · 483 阅读 · 0 评论 -
laraval 分页
$res = $qry->paginate($num_per_page);foreach ($res->items() as $item) { $item->vendor_name = $item->order->vendor->name; $item->ship_date = $item->order->ship_da...原创 2019-08-27 15:26:00 · 183 阅读 · 0 评论 -
php 点语法获取数组
//点语法获取数组元素private function getNestedVar(&$context, $name) { $pieces = explode('.', $name); foreach ($pieces as $piece) { if (!is_array($context) || !array_key_exists($piece, $co...转载 2019-06-27 16:11:34 · 604 阅读 · 0 评论 -
laravel 模型关联细节
laravel 模型关联假设有两张表用户表(user)和 联系电话表(phone)user表有以下字段:idnamephone:表有以下字段:iduser_id\Model\User //user 模型public function phone() {$this->hasOne(Model\Phone, user_i...原创 2019-07-01 15:48:19 · 859 阅读 · 0 评论 -
laravel Excel 导入导出
"maatwebsite/excel": "~2.1.0",版本2.x.x 使用方法,注意3.x.x 不适用use Excel;导出:$cellData[] = [ '商品编码','调拨数量']; //表头// fnsku 转成skuforeach ($products as $pro) { $cellData[] = [ $sku_arr[$p...原创 2019-04-25 16:13:54 · 246 阅读 · 0 评论 -
laravel join 关联查询
laravel join关联查询1、两表关联$fbaInventoryTb = (new \App\Model\Amz\Fba\InventoryReport)->getTable();$productTb = (new \App\Model\Amz\Product)->getTable();$twInventoryTb = (new \App\Model\T...原创 2019-04-26 09:38:21 · 3022 阅读 · 0 评论 -
MAMP PRO 添加PHP 扩展方法
https://my.oschina.net/manks/blog/632460安装一些php扩展,参考php手册即可,下面对需要说明的部分进行补充,以安装php扩展pcntl为例。#查看当前php版本123456deMacBook-Pro:~ admin$ php -vPHP 5.5.14 (cli) (built: Sep 9 2014 19:09:25) Copyright...转载 2019-01-07 15:06:23 · 2984 阅读 · 0 评论 -
PHP Carbon 时间库 的使用
use Carbon\Carbon;//这个月的第一天Carbon::now()->firstOfMonth(); //上个月第一天Carbon::now()->subMonth()->firstOfMonth()#格式化$date = Carbon::now()->firstOfMonth(); //得到的是对象$date->...原创 2018-12-30 13:52:35 · 1109 阅读 · 0 评论 -
php 配置自动部署webhook
webhook 执行文件 index.php 如下内容: <?phperror_reporting(1); // 网站的web目录$target='/www/test'; $token='test_token';$json=json_decode(file_get_contents('php://input'),true); #prin...原创 2018-12-20 17:46:30 · 392 阅读 · 0 评论 -
PHP nginx 配置
php 配置 参考:https://typecodes.com/web/php7configure.htmlphp.ini 是核心文件php-fpm.conf 是php-fpm 配置文件php.fpm.conf 最后引用了 php.fpm.d/www.conf查看以上文件 得出: listen = /var/run/php5-fpm.sock。 配置...原创 2018-12-07 09:37:50 · 156 阅读 · 0 评论 -
全手动编译安装php
安装环境: ubuntu-server 版本 18 下载phpphp.net找到PHP 最新稳定版本wget http://php.net/get/php-7.2.12.tar.gztar xzvf php-7.2.12.tar.gz root@aaa: mkdir /usr/local/phproot@aaa: cd php-...原创 2018-12-06 17:29:09 · 243 阅读 · 0 评论 -
laravel resource route 接收前端提交的PUT 数据
/** * 更新策略 PUT (前端 raw(原始字符串)方式提交 一定要content-type: application/json) * @chelu */ public function update(Request $req, $id) { $par = $req->all(); $strateg...原创 2018-12-05 11:29:22 · 2172 阅读 · 0 评论 -
PHP连接mysql8.1 遇到的坑
laravel 报错:Illuminate\Database\QueryException : SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client 用户的 Authentication type 默认为 caching_sha2_password,导致数据库连接错...原创 2018-11-30 18:27:50 · 3386 阅读 · 0 评论 -
laravel with 关联后 model 里面方法的调用
$qry = PurchaseRep::query();$qry->where('type', 0)->where('ec_id', 1);#type 随意一个 0,1 或2if ($req->sku) { $qry->where('sku', $req->sku);}if ($req->fnsku) { $qry->wher...原创 2018-11-30 10:26:23 · 2980 阅读 · 0 评论 -
apache 配置
httpd.conf1)配置apache 支持 phpLoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so //PHP安装目录下查找 搜索DirectoryIndex,在后面添加index.php index.phtml 找到 Add...原创 2018-09-11 12:37:52 · 172 阅读 · 0 评论 -
转载:Laravel中应用JWT
JWT-Json Web Token,一种基于json格式的开放标准,常常被用作替代cookie的认证方式,特别适合前后端分离的WEB应用,以及api接口。今天就讲讲如何在Laravel应用中使用JWT,虽然网上找到的Laravel集成JWT的方法,不过要么就坑点太多,要么就有诸多限制(比如要验证的模型有多个怎么配置)。实验环境Laravel 5.2+PHP 5.5+tymon/jwt-auth ...转载 2018-07-07 17:01:48 · 508 阅读 · 0 评论 -
composer 发布自己的包
github 更新包以后,确保packagist 也update使用国际镜像 (国内镜像更新比较慢)composer.json { "require": { "wubuze/g2b2g": "dev-master" }, "repositories": { "packagist": { "type": "composer",原创 2018-06-14 21:29:47 · 380 阅读 · 0 评论