在使用 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
解决问题。