如何将结果放入文本文件?
代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法真正写入 $conn 的内容,因为它是一个资源处理程序,但是您可以将 $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: