如何将结果放入文本文件?

发布于 2024-12-02 03:11:24 字数 311 浏览 1 评论 0原文

代码:

   if ($conn = fsockopen ("whois.crsnic.net", 43)) {
        fputs($conn, $domain."\r\n");
        while(!feof($conn)) {
            $output .= fgets($conn,128);
        }
        fclose($conn);

现在,我想将 $conn$output 的输出放在两个文本文件中。我该怎么办?谢谢。

the code:

   if ($conn = fsockopen ("whois.crsnic.net", 43)) {
        fputs($conn, $domain."\r\n");
        while(!feof($conn)) {
            $output .= fgets($conn,128);
        }
        fclose($conn);

now,i want to put the output of $conn and $output in two text file. how shoud i do? thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平生欢 2024-12-09 03:11:24

您无法真正写入 $conn 的内容,因为它是一个资源处理程序,但是您可以将 $output 的内容写入文件:

file_put_contents('filename', $output);

You can't really write the contents of $conn, as it's a resource handler, however you can write the contents of $output to a file:

file_put_contents('filename', $output);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文