首页 > Web开发 > 详细

【php书写不规范】Notice: Use of undefined constant memory_limit - assumed 'memory_limit' in..

时间:2021-06-22 15:23:37      阅读:13      评论:0      收藏:0      [点我收藏+]
php代码提示
Notice: Use of undefined constant memory_limit - assumed ‘memory_limit‘ in XXXX
原来是书写不规范导致的,原来是下面这样写的
ini_set(memory_limit,-1);

  改为

ini_set(‘memory_limit‘,-1);

完成。

【php书写不规范】Notice: Use of undefined constant memory_limit - assumed 'memory_limit' in..

原文:https://www.cnblogs.com/html55/p/14917905.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!