我在 ajax 调用的脚本中使用 ob_get_clean
它阻止垃圾被退回
我正在使用 ob_start 但它对我来说是一个被禁止的功能
从我的代码中取出 ob_start() 似乎对其工作方式没有影响
所以我只使用 ob_get_clean 来阻止垃圾被传回,不使用 ob_start 有什么影响吗?
测试代码:
test();
ob_get_clean();
print 'HELLO';
function test() {
print 'TEST';
}
因为我只想要 HELLO 打印件