当前位置:首页 > 搜索和 t 相关的文章

php Function eregi() is deprecated 解决方案

添加日期:2018-10-24 13:20:17 发布:smiling 
首先说下ereg()与eregi()的区别:ereg()字符串对比匹配函数,区分字符串大小写;eregi()字符串对比匹配函数,不区分字符串大小写 这两个函数在php正则里经常会用到,但是由于php5 3以后的版本不再支 ...

PHP fwrite换行写入时换行符不起作用的原因

添加日期:2018-10-23 10:02:19 发布:smiling 
php的换行符我们都知道: n ,回车符: r,在需要换行时,通常是用 r n这个组合。但是为什么我们在使用fwrite写入文件时 n换行符不起作用呢。我们先看下面这个例子:<?php$filename=& 39;file txt ...

PHP的imagettftext中文乱码解决方法

添加日期:2018-10-23 10:02:19 发布:smiling 
分析:1、确认gb库是否正确安装?没有报这个方法不存在。2、imagettftext()必须utf-8编码,php的整个项目都是utf-8编码,所以不用太多考虑。如果不是,可以mb_convert_encoding()转换;3、检查字体 ...

php7跑laravel5.0报错,异常Carbon::createFromFormat()

添加日期:2018-10-23 10:00:07 发布:smiling 
异常:Declaration of Carbon Carbon::createFromFormat() should be compatible with DateTime::createFromFormat($format, $time, DateTimeZone $object = NULL)解决:修改:vendor ...

PHP 报错 Fatal error: Class COM not found in

添加日期:2018-10-23 09:53:46 发布:smiling 
Fatal error: Class & 39;COM& 39; not found in XXXXXXXXX没发现 COM 类原因分析检查php目录ext文件夹下面php_com_dotnet dll是否存在解决方法:★ extension_dir ext路径是否正确★ ...

file_get_contents 中文路径报错问题解决

添加日期:2018-10-23 09:42:30 发布:smiling 
解决file_get_contents遇到中文文件名无法打开问题比如:受访页面_20151202-20151202 csvfile_get_contents(受访页面_20151202-20151202 csv)就会报错[function file-get-contents]: failed to ...

同一页面放多个百度编辑器 Ueditor 并用PHP获取 Ueditor 的实例

添加日期:2018-10-23 09:40:33 发布:smiling 
同一页面放多个百度编辑器 Ueditor 并用PHP获取 Ueditor 的值的实例同一个网页如何放置多个Ueditor?参考代码如下:<formmethod="post"action="save php"><scripttype="text plain"id="ueditor ...

phpexcel导入xlsx文件报错xlsx is not recognised as an OLE file 怎么办

添加日期:2018-10-22 17:35:24 发布:smiling 
最初的做法:include& 39;classes PHPExcel IOFactory php& 39;;$inputFileName=$target;$objReader=newPHPExcel_Reader_Excel5();$objPHPExcel=$objReader->load($inputFileName);$sheetData=$objP ...

file_put_contents并发性问题解决方案整理

添加日期:2018-10-22 17:26:23 发布:smiling 
解决办法一,file_put_contents 高并发与独占锁定发现高并发访问时使用 file_put_contents 写入文件造成数据置空。查看官方文档:int file_put_contents ( string $filename , string $da ...

PHP date()函数It is not safe to rely on the system s timezone settings

添加日期:2018-10-22 17:25:17 发布:smiling 
在写php文件上传程序时有时会出现这样的警告:Type:image pngSize:66 84765625KbTempfile:D: Users Aven AppData Local Temp php742F tmpWarning:move_uploaded_file()[function move-uploaded-fil ...

php 502 bad gateway的解决方案

添加日期:2018-10-22 17:21:38 发布:smiling 
今天升级完PHP出现了502 Bad Gateway错误,根据经验是php-fpm的问题,但是看到网上那些什么访问量,子进程设置什么的,但是我这太服务器压根没啥流量。所以只能从配置文件下手看看。[global]pid= ...

PDO连接数据报错could not find driver解决办法

添加日期:2018-10-22 17:20:11 发布:smiling 
把这个模块打开,重启apache就可以了遇到这个错误的原因只有一个,那就是PDO对应的数据库扩展没有加载进来,不要去怀疑PDO的错误,假如你在使用PDO的过程中遇到could not find driver报错,下面 ...