如何保存搜索查询(复制文件并保存)

时间:2010-11-08 16:00:12

标签: php

1 个答案:

答案 0 :(得分:0)

希望我能帮到你:你想将任何查询的输出存储到文件中。您可以使用输出缓冲来管理它。

在剧本怀疑的开始:

ob_start(); // start buffering

这会打开缓冲。

在页面wright的eng中这样的东西($ query是查询文本):

$html = ob_get_contents();
ob_end_flush(); // this turns off buffering and sends buffered content to output
$fp = fopen("{$query}.html","w");
fwrite($fp,$html);
fclose($fp);