PHP7.4在2019年11月28日正式发布。其中有一个变化是不再能够使用花括号来访问数组或者字符串的偏移,下面来具体看一下。 假设我们有一个数组如下: $arr = [‘a’,’b’,’c’]; 现 … Continue reading Deprecated: Array and string offset access syntax with curly braces is deprecated in 提示原因
标签: php
PHP date函数参数详解
time)在PHP中是得到一个数字,这个数字表示从1970-01-01到现在共走了多少秒,很奇怪吧 不过这样方便计算, 要找出前一天的时间就是 time)-60*60*24; 要找出前一年的时间就是 … Continue reading PHP date函数参数详解
php使用curl保存微信用户头像到本地或者服务器
php使用curl保存微信用户头像到本地或者服务器,代码如下: <? $header = array ‘User-Agent: Mozilla/5.0 Windows NT 6.1; Win64 … Continue reading php使用curl保存微信用户头像到本地或者服务器
PHP利用网易或腾讯qq邮箱实现在线反馈表单提交后自动发邮件到指定邮箱
PHP在线发邮件代码 为解决一些主机空间或服务器上不带发邮件sendmail程序 给大家提供一个亲测可用的在线发邮件小程序,可按自己要求修改 2020.12.7 更新代码,添加发件人名称自定义功能。 … Continue reading PHP利用网易或腾讯qq邮箱实现在线反馈表单提交后自动发邮件到指定邮箱
wordpress使用grace主题打开年度归档页提示错误Allowed memory size of 67108864 bytes exhausted的解决方法
wordpress使用grace主题打开年度归档页提示错误Allowed memory size of 67108864 bytes exhausted的解决方法 从错误信息上可以明显看出是Allow … Continue reading wordpress使用grace主题打开年度归档页提示错误Allowed memory size of 67108864 bytes exhausted的解决方法
php代码获取用户QQ头像
<?php $qq=7758521;//要获取头像的QQ号码 $src=’https://q1.qlogo.cn/g?b=qq&nk=’.$qq.’&s=100&t=’. … Continue reading php代码获取用户QQ头像
php提示Notice: Undefined index解决方法
php提示Notice: Undefined index问题,Undefined index:是指你的代码里存在:“变量还未定义、赋值就使用”的错误,这个不是致命错误,不会让你的php代码运行强行中止 … Continue reading php提示Notice: Undefined index解决方法
php读取文件夹下所有图片或文件并显示路径和文件名
最新在卖收款宝,需要给客户打印收款二维码,需要调整到固定大小,之前客服都是插入图片到word里手动调整,后来我写了个程序可以直接读取当天所有要打印的图片到网页里,然后批量打印,代码如下: <?p … Continue reading php读取文件夹下所有图片或文件并显示路径和文件名
thinkphp在php5.5版本以上”No input file specified“问题解决方法
.htaccess文件中的 RewriteRule ^.*)$ index.php/$1 [QSA,PT,L] 在默认情况下会导致No input file specified. 修改成 Rewrit … Continue reading thinkphp在php5.5版本以上”No input file specified“问题解决方法
No input file specified的解决方法
(一)IIS Noinput file specified 方法一:改PHP.ini中的doc_root行,打开ini文件注释掉此行,然后重启IIS 方法二: 请修改php.ini 找到 ; cgi. … Continue reading No input file specified的解决方法