技术饭 php 7.2 安装 mcrypt 扩展
centos版本升级到8,PHP的环境升级 php 7.2 后,使用微信提供的加解密代码时,提示 call to undefined function mcrypt_module_open(),mcrypt_module_open()方法不存在,应该是PHP升级之后可能扩展被废弃了吧,查阅相关资料知晓,mcrypt 扩展从 php 7.1.0 开始废弃;自 php 7.2.0 起,会移到 pecl。
阅读全文 » 1432天前2020年12月22日
技术饭 Group by 查询时的ONLY_FULL_GROUP_BY错误解决方案
mysql使用group_by的时候报错:Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #5 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'cis.q1.query_date' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by。
阅读全文 » 1471天前2020年11月13日
技术饭 chart.js(intermediate value).Line is not a function
chart.js是一款网页中绘制图表的JavaScript框架,能够根据需要画出各种图表,而且文档全面细致,值得一用。下面介绍一个自己使用过程中遇到的坑,给后来者提个醒。
阅读全文 » 1729天前2020年02月28日
技术饭 nginx+php使用open_basedir限制站点目录防止跨站
今天在帮助一个朋友配置一台服务器时发现网站配置好了缓存目录读写不成功,在打开错误时发现提示 Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(../license.php) is not within the allowed path(s): 错误了。
阅读全文 » 2160天前2018年12月24日
技术饭 call_user_func 函数在命名空间下调用函数的问题
在有命名空间的条件下会报这样一个错 Warning: call_user_func() expects parameter 1 to be a valid callback, function 'barber' not found or invalid function name in 提示找不到这个函数
阅读全文 » 2174天前2018年12月11日
技术饭 MySQL创建自定义函数(Functions)
MySQL创建自定义函数(Functions),查看函数功能是否开启:show variables like '%func%';开启:SET GLOBAL log_bin_trust_function_creators=1;关闭:SET GLOBAL log_bin_trust_function_creators=0;
阅读全文 » 2241天前2018年10月05日