
php bug
php bug
安果移不动
精通Android,Swift,Flutter,Python,Php,按键精灵,易语言。曾为华为录制精品课程,拥有资质:按键精灵顶级证书;
产品秀:https://www.anguomob.com
B站:https://space.bilibili.com/482453235
展开
-
phpStrom 自定义访问host 自动上传文件bug
重新关闭开启就好了原创 2020-07-05 12:38:59 · 222 阅读 · 0 评论 -
Warning: count(): Parameter must be an array or an object that implements Countable in line 302解决方法
既然提示count()参数必须是一个数组或一个对象,那我们就直接将它设为数组试试if (count($tombstones) > 0) :改为if (count((array)$tombstones) > 0) :原创 2020-06-01 02:44:21 · 762 阅读 · 0 评论 -
502 Bad Gateway PhpStorm 2018.3.5
出现原因。使用a.php文件引用了一个本地文件 a.txt此php千万不要在本地运行否则所有都会出现502....解决方法原本弄成下面这样再弄回来弄成图1的样子...原创 2019-03-22 19:52:16 · 949 阅读 · 0 评论 -
关于使用 session_start 出现的 Warning: session_start(): Cannot send sessioncache limiter - 问题的解决
在session_start()前不能有任何的输出!即使是空格或回车都不行·!!!!所以要把这句在html开头提前写一遍原创 2019-02-02 18:26:54 · 807 阅读 · 0 评论 -
[PHP问题]Cannot redeclare xxxxxx() (previously declared in C:\WWW\xxx.xxx:xxx)
今天碰到一个诡异的现象,用别人家的PHP程序报错,简单记录一下:错误提示:Cannot redeclare xxxxxx() (previously declared in C:\WWW\geoip.inc:xxx) in <b>C:\WWW\geoip.inc</b> on line <b>xxx</b><br />错误原因...原创 2018-11-30 12:24:14 · 20243 阅读 · 1 评论 -
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use
具体的问题:Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used a...原创 2018-11-29 23:27:35 · 1790 阅读 · 0 评论 -
【webstorm】提示requested without authorization,页面未授权
用webstorm调试页面时,老是弹出对话框说页面未授权,如下图:解决方案也是蛮简单的咯,把他勾选上就好啦!如下图:原创 2018-11-21 16:12:41 · 506 阅读 · 0 评论 -
已解决|php insert into 插入失败 |Incorrect string value: '\xE5\x88\x98\xE5\xAE\x89' for column 'name
/代码插入数据$myID = Null;$myName='刘安';$myMoney=100;$sqlstatement="insert into users values(Null, '{$myName}', '{$myMoney}')";$result=mysql_query($sqlstatement);var_dump($result);一直false false fal...原创 2018-11-16 16:48:16 · 1527 阅读 · 0 评论