- 昵称:51助手
- 博龄:6年6个月7天
- 粉丝:122
- 关注:108
- +关注
搜索
文章分类
博客档案
Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? 解决办法
摘要:HP.ini默认配置下,用file_get_contents读取https的链接,就会如下错误:Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget to enable it when you configured PH
mysql latin1导出中文乱码
摘要:1 使用navicat连接数据库时选择指定编码2 复制数据库表到本地数据库3导出本地数据库,就发现中文不乱码了
php 取整
摘要:echo intval(4.5);echo "<br />";//直接取整,舍弃小数保留整数 echo round(4.5);echo "<br />";//四舍五入取整 echo ceil(4.5);echo
宝塔安装imagick pdf转图片报错 Fatal error: Uncaught ImagickException: FailedToExecuteCommand `'gs'
摘要:php 实现pdf轩图片,需要安装 imagick 扩展,过程遇到了许多坑1 从宝塔中找软件商店-》php7.2 安装 imagemagick2 .查看是否已安装成功phpinfo();看到 imagick 说明安装成功了3 安装成功后php引用测试error_repo
php RC1 版本 RC 是什么意思呢
摘要:Alpha:是内部测试版,一般不向外部发布,会有很多Bug.一般只有测试人员使用。Beta:也是测试版,这个阶段的版本会一直加入新的功能。在Alpha版之后推出。RC:(Release Candidate) 顾名思义么 ! 用在软件上就是候选版本。系统平台上就是发行候选版本。RC版不会再加入新的功能了,主要着重于除错。GA:General Availabil
查看php是是ts还是nts版
摘要:主要是通过phpinfo();打印环境查看其中的 Thread Safety 项,这个项目就是查看是否是线程安全如果是:enabled,一般来说应该是ts版,否则是nts版。
js节流防抖
摘要: //节流防抖函数 function debounce(fun, delay) { return function (args) { let that = t
tp5 variable type error:array
摘要:ajax提交数据时报错,variable type error:arraydata: $('#myform').serialize(),百度很多人说改config.php 文件里的 'default_return_type' => 'html' 改