前边我们报导过,PHP 兼 Zend 公司联合创始人 Zeev Suraski 宣布目前已经从工作了 20 年的 Zend 公司离职。2 日晚间,知名 PHP 开发者,同时也是 PHP … Continue reading Zend 创始人离职原来早已安排好
标签: php
php使用curl保存微信用户头像到本地或者服务器
php使用curl保存微信用户头像到本地或者服务器,代码如下: <? $header = array( ‘User-Agent: Mozilla/5.0 (Windows NT 6.1; Win … 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 8 中确认支持 JIT
一直以来,大家都在讨论 PHP 8 中是否会支持 JIT(Just-In-Time)即时编译执行功能,最新消息是官方已经确认将其引入。 PHP 实现了一个虚拟机 Zend VM,它会将人类可读 … Continue reading PHP 8 中确认支持 JIT
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. 修改成 Rewri … 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的解决方法