标签: php buffer
我需要
因为我需要。
到目前为止,我确信可以使用以下缓冲区来完成:
ob_start(); $parallelcurl->startRequest($data[$name]['repository'], 'requestDone_list'); array_push($repository, ob_get_contents()); ob_end_flush();
但它实际上回应了拯救它们的东西,但没有抹去 - 我看到了许多我不想要的回声。
答案 0 :(得分:2)
您不想要ob_end_flush(),您需要ob_end_clean();。
ob_end_flush()
ob_end_clean();