
php
weixin_38375151
这个作者很懒,什么都没留下…
展开
-
php的redis扩展包的安装版本地址
php的redis扩展包的安装版本地址如下php的redis扩展包的安装版本地址原创 2019-12-17 17:47:33 · 138 阅读 · 0 评论 -
phpstorm debug总是debug到入口文件第一行
解决方案:打开phpstorm的设置->语言->php->debug取消勾选 break at first line in PHP scripts原创 2019-12-05 18:52:14 · 663 阅读 · 1 评论 -
php必备技能!![会补充]
1.解释继承,多态,接口,2.抽象类和接口的区别3.php与apache/nginx之间如何通信深入理解PHP之:Nginx 与 FPM 的工作机制4.数据库连接池5.设计模式6.trait的理解和原理7.修饰符的解释public/protect/provite8.进程线程描述9,.token缓存地址...原创 2019-09-29 14:42:59 · 180 阅读 · 0 评论 -
阿里云短信原生sdk 解决 Uncaught Error: Class ‘Aliyun\Core\Config’ not found 问题
原文链接:https://blog.youkuaiyun.com/qq_38125058/article/details/79162045之前是直接composer安装的阿里大鱼,没有发现问题。现在下了阿里的原生的短信sdk,报错Uncaught Error: Class ‘Aliyun\Core\Config’ not found,解决方法如下阿里云短信服务一:使用阿里云的短信服务① 申请...转载 2019-09-20 18:29:04 · 3109 阅读 · 0 评论 -
php获取pdf中的文字
phpparser简单易上手,经测试好用,但是我项目的pdf文件中有的文字获取不到。xpdf 试验中原创 2019-05-14 15:57:27 · 3084 阅读 · 1 评论 -
phpexcel的一些用法--持续更新
//设置默认行高$objPHPExcel->getActiveSheet()->getDefaultRowDimension()->setRowHeight(30);原创 2019-05-14 15:55:04 · 155 阅读 · 0 评论 -
php 过滤敏感词
php 过滤csv敏感词 上代码function getcsv($content=''){$csv_file='精确词1.csv';//读取文件$file=file_get_contents($csv_file);$arr = explode("\r\n",$file);foreach($arr as $k=>$v){ if($v){ if(strpos...原创 2019-04-22 17:16:03 · 560 阅读 · 0 评论 -
File upload error - unable to create a temporary file in Unknown on line 0
PHP Warning: File upload error - unable to create a temporary file in Unknown on line 0上传文件报错,若不是上传文件目录权限问题,解决方案去掉 upload_tmp_dir 前面的分号然后设置临时文件目录即可;亲测有效...原创 2019-04-22 11:52:47 · 1760 阅读 · 0 评论 -
一些很好用的php函数方法
一些不太常用又很好用的php函数方法parse_str() 函数把查询字符串解析到变量中。原创 2019-04-04 16:15:03 · 222 阅读 · 0 评论 -
关于在同一个电脑上用设置多个git ssh key需要注意的点
在同一个电脑上用设置多个ssh key需要注意的点在克隆项目时出现这个错误ERROR: Repository not found.fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.接下来检查了...原创 2019-03-12 15:09:05 · 340 阅读 · 1 评论 -
Class '\think\db\connector\Oracle' not found的解决方法
Class ‘\think\db\connector\Oracle’ not found的解决方法用thinkphp5.1链接oracle数据库时报错 Class ‘\think\db\connector\Oracle’ not found。解决方法:用composer安装oracle驱动,进入项目目录,运行 composer require topthink/think-oracle=2...原创 2019-03-20 14:23:37 · 6611 阅读 · 0 评论 -
关于mysql
刚刚发现 mysql like模糊查询 decimal类型的字段时不生效,无法匹配结果集! 先记下来!完了查一查为什么~~原创 2019-03-15 15:48:39 · 99 阅读 · 0 评论 -
分享一下最近对我有帮助的文章(持续更新)
1,mysql中的insert into 和 replace into , 链接:http://blog.youkuaiyun.com/mchdba/article/details/86475602,启动邮箱报错 (send-mail: fatal: parameter inet_interfaces: no local interface found for ::1) 链接:h...原创 2018-03-20 10:20:07 · 139 阅读 · 0 评论