小铁匠
用心工作,快乐生活~
备案号 豫ICP备15020673号
© 2018-2025 刘宇鹏 版权所有
在使用 ob_clean()清除缓存区时,有以下报错信息:
ob_clean()
Notice: ob_clean() [ref.outcontrol]: failed to delete buffer. No buffer to delete
问题原因是没有开启php缓存区,解决办法:找到php.ini
output_buffering=off
改为
output_buffering=on
解决问题。