当您在php中编写echo时,“输出中将打印文本” 打印后如何清除?
答案 0 :(得分:0)
清理(擦除)输出缓冲区
// clean the output buffer
ob_clean();
请参阅此link
对于下面的示例,浏览器上没有输出
echo 'This is text.';
ob_clean();
答案 1 :(得分:0)
这取决于上下文。当您在CLI中运行PHP时,例如执行shell命令以清除它,shell_exec('clear');
,但是在macOS终端上它不起作用。也许在那里。