whaxkl
码农
展开
-
array_column二维数组保留key
array_column二维数组保留key,获取数组下标原创 2023-12-08 10:02:40 · 554 阅读 · 0 评论 -
php第三方skd自动加载
php第三方skd自动加载原创 2023-12-07 10:47:20 · 699 阅读 · 0 评论 -
PHP GET,POST请求file_get_contents拼接header
【代码】PHP GET,POST请求file_get_contents拼接header。原创 2023-09-15 18:12:31 · 552 阅读 · 0 评论 -
Laravel获取项目文件路径
【代码】Laravel获取项目文件路径。原创 2023-09-14 18:01:23 · 788 阅读 · 0 评论 -
supervisord 进程管理器 Laravel执行队列
supervisord 进程管理器 Laravel执行队列原创 2023-09-13 18:01:35 · 774 阅读 · 0 评论 -
php浏览器JSON格式输出JSONViewer
【代码】php浏览器JSON格式输出JSONViewer。原创 2023-09-02 10:18:48 · 145 阅读 · 0 评论 -
PHP 获取随机数量中文、GET、POST请求
【代码】PHP 获取随机数量中文、GET、POST请求。原创 2023-07-25 17:46:49 · 77 阅读 · 0 评论 -
php判断类或对象中的属性是否存在
php判断类或对象中的属性是否存在,返回值是bool变量,存在是为true,不存在是false。原创 2023-07-21 10:25:26 · 258 阅读 · 0 评论 -
Laravel查询字段相等,判断字段相等,修改字段相等
Laravel判断字段是否相等,修改字段相等原创 2023-06-14 10:19:37 · 349 阅读 · 0 评论 -
laravel判断关联查询数据统计是否为空
【代码】laravel判断关联查询数据统计是否为空。原创 2023-04-25 15:43:47 · 483 阅读 · 0 评论 -
Laravel 数据迁移填充
Laravel 创建填充文件。原创 2023-01-06 10:11:03 · 124 阅读 · 0 评论 -
fastadmin获取单选框按钮值,并动态生成url,并动态修改url
edit: function () { Controller.api.bindevent(); $("input[name='row[status]']").change(function(){ $("#c-relevancy_id_text").val(''); $("#c-relevancy_id").val(''); if($("input[name='row[status]']:checked").val() == 4){ //$('#c原创 2021-11-04 20:27:22 · 1434 阅读 · 0 评论 -
fastadmin 后台指定字段 隐藏删除按钮
{ field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter:function(value, row, index){ var table = this.table; // 操作配置 var options = table ? table.bootstrapTable('getOptions') :原创 2021-11-04 20:09:26 · 576 阅读 · 0 评论 -
fastadmin动态监听add,edit下拉框值隐藏显示div
js判断结果并展示和隐藏属性add: function () { Controller.api.bindevent(); if($('#c-currency_id').val() != 6){ $(".bandwidth").css('display', 'none'); $(".bandwidth_unit").css('display', 'none'); $(".expand_price").css('display', 'none')原创 2021-07-21 10:45:56 · 1253 阅读 · 5 评论 -
THINKPHP 插入10万数据
<?phpnamespace app\index\controller;use think\Controller;use think\Db;class Index extends Controller{ public function index(){ date_default_timezone_set("PRC"); // 此处修改php.ini的内存,不然无法执行插入,因为数据量太大 ini_set('memory_limit','1024M');原创 2021-06-09 11:39:53 · 620 阅读 · 0 评论 -
selectpage,fastadmin下拉框搜索
复制方法根据备注修改增加编辑selectpage没有作用,直接手写方法查找数据库,关联弃用$this->selectpage某些地方需要根据自己对应表和值更改数据,有问题看备注,可以评论咨询/** * selectpage自定义搜索,显示,用于页面编辑和增加页面展示调用方法 */ public function get_pid(){ $userRelationModel = new \app\common\model\UserRelation();//原创 2021-05-26 20:44:16 · 2042 阅读 · 1 评论 -
fastadmin selectpage下拉框多字段显示
后台selectpage返回值添加字段$result = [ $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '', $field => isset($item[$field]) ? $item[$field] : '', 'money' => isset($item['money']) ? $item['money'] : ''//添加的字段];js添加,在需要添加的页面添加方法就行原创 2021-05-25 20:09:49 · 1387 阅读 · 0 评论 -
TP-THINKPHP模型 hasOne、hasMany、belongsTo详解
ThinkPHP5有关联模型的操作,但有部分初学者对数据表中常见的几种表与表的关系还存在着问题,所以使用不好关联查询。这里将hasOne、hasMany、belongsTo进行一个详细举例说明。首先,这3个的大致中文意思:hasOne:有一个,加上主谓语应该是 ,A 有一个 BhasMany:有很多,A 有很多 BbelongsTo:属于, A 属于 B这里我们准备3张表来理解他们的关系:user_group 用户分组表:id、titleuser 用户表:id、user_group_id、u原创 2021-05-20 14:56:18 · 2669 阅读 · 4 评论 -
PHP返回上一页
<?phpecho "上页的地址为:".$_SERVER["HTTP_REFERER"] ;echo "<script type='text/javascript'>history.go(-1)</script>" //此方法直接返回?>原创 2021-05-18 09:36:22 · 1272 阅读 · 0 评论 -
PHP获取字符串img url链接
https://www.jianshu.com/p/351790bd2238$str='[caption id="attachment_10" align="alignnone" width="500"]<img class="wp-image-10 size-full" src="http://customfw.com/wp-content/uploads/2020/01/Abby-M...原创 2020-01-21 16:39:15 · 1269 阅读 · 0 评论 -
alert中文乱码
PHPheader("Content-Type: text/html;charset=gb2312");或者header("Content-Type: text/html;charset=utf-8"); 代码//echo "<meta http-equiv='Content-Type'' content='text/html; charset=utf-8'>";ech...原创 2020-01-06 16:48:00 · 602 阅读 · 0 评论 -
Pixelfed系统
https://docs.pixelfed.org/原创 2019-12-30 15:17:08 · 5516 阅读 · 0 评论 -
LINUX环境下NGINX链接不上FPM,TP支持pathinfo
https://www.cnblogs.com/qk2014/p/8683493.htmlhttps://www.cnblogs.com/ly912790844/p/10399679.htmlhttps://www.cnblogs.com/pzk7788/p/10341113.htmlhttps://www.cnblogs.com/two-bees/p/10819876.html ...原创 2019-12-23 10:23:40 · 994 阅读 · 0 评论 -
MySQL在本地能连接上,远程连接不上的解决办法
https://jingyan.baidu.com/article/380abd0a3aef431d90192c33.html工具/原料阿里云服务器 ECS安装MySQL方法/步骤1查看MySQL进程是否正常,可以阿里云服务器 ECS 服务器上输入:ps -ef|grep mysqldmysqld_safe和mysqld都在,说明MySQL进程是正常,若没有这两进程,执行/etc/init....原创 2019-12-17 09:41:26 · 1839 阅读 · 0 评论 -
PHP操作PowerShell编程IIS建站以WordPress为例
IIS操作https://www.cnblogs.com/dreamer-fish/p/3986044.html建立一个.ps1后缀文件再选择专用编辑器打开复制以下代码文件操作链接:https://www.jianshu.com/p/787db4c28f71cp a b如果a是一个文件,b是一个文件,则复制a为b;如果a是一个文件,b是一个文件夹,则复制a到b中;如果a是...原创 2019-12-12 14:32:58 · 764 阅读 · 6 评论 -
文件目录对比下载
https://winmerge.org/?lang=en原创 2019-12-05 18:10:05 · 1074 阅读 · 0 评论 -
IIS Let’s Encrypt配置https及url重写
安装Let’s Encrypthttps://miketabor.com/how-to-install-a-lets-encrypt-ssl-cert-on-microsoft-iis/https://www.gsanweb.cn/other/302url重写1根据IIS版本备份以下文件:IIS6.0 路径:C:\WINDOWS\Help\iisHelp\common\403-4.ht...原创 2019-12-05 13:48:45 · 588 阅读 · 0 评论 -
Cannot modify header information - headers already sent by
修改文件格式为UTF8无BOM格式或者检查header前面有无输出,干掉输出后还不行就干掉header头,不用谢,我是个好人找到php.ini 修改output_buffering =4096 为On 错误解决了,output_buffering = On...原创 2019-12-02 14:02:43 · 248 阅读 · 0 评论 -
nginx解决413 Request Entity Too Large及nginx错误查找
位置:打开nginx主配置文件nginx.confsudo vim /etc/nginx/nginx.conf添加:client_max_body_size 20M;client_max_body_size 20M;可以选择在http{ }中设置:client_max_body_size 20m;也可以选择在server{ }中设置:client_max_body_size 20m;...原创 2019-11-27 17:39:48 · 220 阅读 · 0 评论 -
Windows安装ssh2
ssh2拓展下载,按自己的系统及PHP版本下载我下载的是7.2版本的,php_ssh2-1.2-7.2-ts-vc15-x64.ziphttps://windows.php.net/downloads/pecl/releases/ssh2/把这两个文件php_ssh2.pdb,php_ssh2.dll放到php目录下的ext目录下然后修改php.ini文件,搜索extension,把下面...原创 2019-11-27 15:26:18 · 1273 阅读 · 0 评论 -
Ubuntu html识别php及Nginx遇上Access Denied提示怎么解决
Ubuntu Nginx HTML解析PHPlocation ~ \.php$ { #include snippets/fastcgi-php.conf; #fastcgi_pass unix:/run/php/php7.2-fpm.sock; #fastcgi_pass 127.0.0.1:9000;}改为location ~ \.(html|php)$ { #include ...原创 2019-11-27 15:10:23 · 543 阅读 · 0 评论 -
Nginx报错查找办法,启动nginx提示“Job for nginx.service failed because the control process...”解决办法
systemctl status nginx -l在找配置文件出错的那一行时,可以在输入’i’进入编辑模式之前,输入冒号’:’,再加上第几行,比如上面是第3行,那么就输入’:3’,然后回车,光标就会跳到第3行开头。:set nu:3原文链接https://www.wenjinyu.me/zh/nginx-error-job-for-nginx-failed/...原创 2019-11-21 14:53:14 · 1906 阅读 · 0 评论 -
ajax返回值显示为undefined
var obj = eval("("+json+")");obj.types;https://blog.youkuaiyun.com/Rundy_Deng/article/details/78065251转载 2019-11-20 15:26:48 · 1259 阅读 · 0 评论 -
Phpspreadsheet 导入导出功能
安装Composer根目录安装Phpspreadsheet前端请求var link=document.createElement('a'); document.body.appendChild(link); link.href=""; link.click();后端代码<?phpheader('Access-Control-Allow-Origin:*');head...原创 2019-11-14 19:23:22 · 888 阅读 · 0 评论 -
Ubuntu Linux时间与系统时间相差8小时的解决办法
原因是时区不同sudo vim /etc/profile在/etc/profile文件中增加一行export TZ='CST-8'执行使文件立即生效source /etc/profile 或者. /etc/profile原文链接:https://blog.youkuaiyun.com/qq_27664167/article/details/80921327转此文件给有需要的程序员...转载 2019-11-11 11:42:09 · 6975 阅读 · 0 评论 -
Ubuntu lnmp https安装
//更新aptsudo apt-get update//软件升级sudo apt-get upgrade//安装nginxsudo apt-get install nginx//安装php及拓展sudo apt-get install php7.2-common php7.2 php7.2-cli php7.2-common php7.2-fpm php7.2-json php...原创 2019-11-05 20:28:45 · 2024 阅读 · 0 评论 -
Nginx配置+转发8080端口+页面静态缓存+https配置
+++js刷新页面:https://www.jb51.net/article/14397.htmLinux Nginx操作网站链接:https://www.cnblogs.com/pzk7788/p/10341113.htmlhttps://www.cnblogs.com/ly912790844/p/10399679.htmlhttp://www.pythoner.com/197.ht...原创 2019-10-23 14:25:44 · 13898 阅读 · 0 评论 -
菜鸟文档教程
https://www.runoob.com/php/php-operators.html转载 2019-09-30 18:18:55 · 17644 阅读 · 0 评论 -
php获取本年、本月、本周时间戳和日期
https://blog.youkuaiyun.com/qq_40018938/article/details/81031414转载 2019-08-16 09:36:34 · 520 阅读 · 0 评论 -
tp5 时间查询
https://blog.youkuaiyun.com/qq_37138818/article/details/82803575转载 2019-08-16 09:39:03 · 781 阅读 · 0 评论