-2024-
逆水行舟!
逆水行舟!
PHP 性能加速 - 开启opcache
svn中提交文件时出现tree conflicts错误的原因
window7下使用cmd执行php命令
我的电脑-》属性-》高级-》环境变量-》系统变量->Path->编辑->
查看路径下有没有php目录,如果没有加上
比如我的php路径是E:\AppServ\php5 所以要在最后面加上E:\AppServ\php5;E:\AppServ\php5\ext;
->确定,OK。[......]
php 解决MySQL插入数据出现 Incorrect string value: '\xF0\x9F\x92\x8BTi...'错误
错误:A Database Error Occurred Error Number: 1366 Incorrect string value: '\xF0\x9F\x8C\x9F\xE7\x90...' for column 'nick_name' at row 1
解决:
1.升级 MySQL ,然后将对应的数据类型改为utf8mb4类型
2.出现的四字节UTF-8字符过滤或转化为自定义类型
$str = preg_replace('/[\x{10000}-\x{10FFFF}]/u', '', $str);[......]
php memcached扩展 链接memcache操作实例
php日志分析:Nginx + PHP(php-fpm)遇到的502 Bad Gateway错误
php消息队列【摘抄】
php接口 和 抽象类 使用
php队列进程[记录]
PHP 获取文件权限函数
function getChmod($filepath){
return substr(base_convert(@fileperms($filepath),10,8),-4);
}[......]