php
php_lidong
学习 探讨 提高 精进
展开
-
yii2 在宝塔启动supervisor 命令及其配置
[program:1]command=/usr/bin/php /www/wwwroot/tordax.deveapp.cn/yii queue/listen --verbose=1 --color=0directory=/www/wwwroot/tordax.deveapp.cnautorestart=truestartsecs=3startretries=3stdout_logfile=/www/server/panel/plugin/supervisor/log/1.out.logstd原创 2020-12-30 10:42:09 · 1218 阅读 · 0 评论 -
tp5 thinkphp 使用phpqrcode生成带Logo的二维码
https://www.cnblogs.com/yehuisir/p/11429908.html1. composer require aferrandini/phpqrcode//生成二维码 //2. 在生成的二维码中加上logo(生成图片文件) public function scerweima1($text){ //ech...原创 2019-10-29 16:09:41 · 908 阅读 · 0 评论 -
PHP代码加密
1.PHP代码加密(http://phpjiami.com)https://www.phpjiami.com/article/50.html2.原创 2019-04-24 09:09:19 · 199 阅读 · 0 评论 -
tp合成二维码海报
一.生成二维码header('Content-Type:text/html;charset=UTF-8');$_var_26 = '';$url = $_var_26 . '/app/index/qudao.html?uid=' . base64_encode($_var_23);Loader::import('phpqrcode.phpqrcode',EXTEND_PATH,'....原创 2019-05-23 01:20:27 · 1296 阅读 · 0 评论 -
yii2中gridview使用技巧——全选等批量操作
http://www.xiaochengfu.com/index.php/index/detail/aid/68.html原创 2019-06-14 17:32:37 · 980 阅读 · 0 评论 -
实现JavaScript分片上传大视频到七牛云实例
https://blog.csdn.net/weixin_34228617/article/details/93033483转载 2019-08-06 11:00:52 · 2730 阅读 · 0 评论 -
workman-GatewayWorker学习记录
// 当有客户端连接时,将client_id返回,让mvc框架判断当前uid并执行绑定 public static function onConnect($client_id) { Gateway::sendToClient($client_id, json_encode(array( 'type' => 'init',...原创 2019-08-23 17:50:19 · 446 阅读 · 0 评论 -
小程序授权
public function authorization() { $mall_config = config('mall_config'); $APPID = $mall_config['APPID'];//自己配置 $AppSecret = $mall_config['AppSecret'];//自己配置 $da...原创 2019-08-27 08:48:28 · 243 阅读 · 0 评论 -
linux centos7 安装git
https://www.cnblogs.com/shaosks/p/9257563.html转载 2019-03-20 09:25:01 · 164 阅读 · 0 评论 -
curl 爬去页面 生成本地html
原创 2018-05-30 13:58:55 · 1742 阅读 · 0 评论 -
nginx服务器绑定域名和设置根目录的方法
https://www.cnblogs.com/freeweb/p/5261077.htmlnginx服务器绑定域名以及设置根目录非常方便,首先进入nginx安装目录,然后执行 vim conf/nginx.conf 打开nginx的配置文件,找到 server { ..... ..... } 这个代码段,这段代码就是用来配置对应站点的,首先我们应该在域名控制面板将域名解析到我们...转载 2018-05-28 11:11:29 · 4696 阅读 · 1 评论 -
Laravel-5.5验证码mews captcha
laragou环境开发1、安装扩展包 ,安装前确认当前环境支持composer2、 $ composer require "mews/captcha:~2.0" (耐心等待)3、安装完成后执行:$ php artisan vendor:publish 生成配置文件config/captcha 若没有生成 可将mews里面的config里面的captcha .php复制过去3、前台...原创 2018-05-08 16:49:27 · 959 阅读 · 0 评论 -
Laravel-5.5 ajax文件上传
控制器引用:use Storage;原创 2018-05-09 16:11:16 · 1135 阅读 · 0 评论 -
自动生成模块目录
原创 2018-04-16 13:56:10 · 181 阅读 · 0 评论 -
微信上传图片接口,下载接口到本地
后台原创 2018-03-25 14:52:44 · 2530 阅读 · 0 评论 -
阿里云OSS上传文件 Think
1、前往阿里云github下载SDK包:https://github.com/aliyun/aliyun-oss-php-sdk/releases。这里介绍源码部署:Source code下载下来。.phar其实就是一个打包文件,直接引用后就能用,大家自己去试试吧,功能是一样的。2、将下载下来的压缩包解压后放到项目ThinkPHP\Library\Vendor\aliyun路径下。aliy转载 2018-02-05 11:44:29 · 345 阅读 · 0 评论 -
svn同步更新bat脚本
新建post-commit.bat脚本内容如下:@echo off "C:\Program Files\VisualSVN Server\bin\svn.exe" cleanup "D:\wwwroot\ThinkCMF""C:\Program Files\VisualSVN Server\bin\svn.exe" update "D:\wwwroot\ThinkCMF" --username l...原创 2018-06-08 00:38:06 · 1494 阅读 · 1 评论 -
laravel-admin
建模型cmd命令: php artisan make:model aa建控制器: php artisan admin:make ComplaintController --model=App\Models\Complaint原创 2018-06-23 14:37:32 · 463 阅读 · 0 评论 -
yii2 https 阿里云nginx
server { listen 443; server_name movie.cdydd.cn; ssl on; root /data/wwwroot/movie/public; index index.html index.htm index.php; ssl_certificate cert/1793558_movie.cdydd.cn.pem...原创 2019-01-30 18:00:36 · 497 阅读 · 0 评论 -
以太坊web3
https://blog.csdn.net/fangdengfu123/article/details/82621537https://www.jianshu.com/p/a5962ebf5df1https://documenter.getpostman.com/view/788039/RWgwRbCrhttps://etherscan.iohttps://www.zbg.com/...原创 2018-12-17 14:19:44 · 2660 阅读 · 0 评论 -
富文本上传图片带路径
原创 2018-12-05 20:15:20 · 781 阅读 · 0 评论 -
yii2 多图上传常用插件
1.多图上传插件http://www.yii-china.com/post/detail/538.html(1).将文件放入(2)设置config(3).新建的方法(4).修改随机数原创 2018-11-30 11:52:59 · 526 阅读 · 0 评论 -
Allowed memory size of 134217728 bytes exhausted (tried to allocate 1576960 bytes)
@ini_set('memory_limit', '512M');原创 2018-12-04 10:06:50 · 3867 阅读 · 0 评论 -
git,yii,composer
1.current($merchant->getFirstErrors())磊哥项目部署http://git.besoft.top/by/project.git 分支名:zl创建分支:git clone -b htsp http://git.besoft.top/by/share-tour.git htsp(第一个? htsp是分支名? 第二个是更新到指定目录)g...原创 2018-11-06 21:31:31 · 823 阅读 · 0 评论 -
服务器配置Token验证失败
放在页面顶部即可<?php if(strtolower($_SERVER['REQUEST_METHOD']) == 'get') { file_put_contents('weixin_log.txt', "IP=".$_SERVER['REMOTE_ADDR'].PHP_EOL,FILE_APPEND); //记录访问IP到log日志 ...原创 2018-06-28 23:13:33 · 1530 阅读 · 0 评论 -
__construct()和__initialize()
__construct() 是php类的构造函数 class Action{ public function __construct() { echo 'hello Action'; }}class IndexAction extends Action{ public function __construct()原创 2018-01-27 14:49:59 · 1185 阅读 · 0 评论