php fsockopen 卷曲 file_get_contents

发布于 2024-10-16 12:31:04 字数 100 浏览 10 评论 0原文

我对这些东西很陌生。 fsockopen、curl 和 file_get_contents 之间有什么区别? 有人可以用简单的方式解释一下吗?我浏览了手册,但无法弄清楚它们之间的区别。

I am new to these thing. what are the difference between fsockopen, curl,and file_get_contents.
Can someone explain in simple way. I went through the manual, but i could not sortout the difference between them.

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

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

发布评论

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

评论(1

月亮坠入山谷 2024-10-23 12:31:04

很久以前,如果你想要轻松一点,你必须使用curl扩展。

如果您的主机没有提供它,那么您将不得不使用 fsockopen,虽然它非常通用,但更加乏味和挑剔。

在 PHP 的最新版本中,他们为您提供了 file_get_contents(),它可以节省大量 fopen/fsockopen 代码,用于执行一些简单的操作,例如获取文件的内容。

现在,每当您想要对文件进行简单读取时,请使用 file_get_contents()。如果是远程文件,如果你的php.ini中的allow_url_fopen设置为true,你仍然可以获取它。

如果allow_url_fopen不为true并且您无法更改它并且您需要远程文件,则使用curl。 Curl 还可以将内容放入远程文件中。 file_put_contents() 还可以将内容放入文件中并保存一些代码行。

当您需要通过网络连接执行任意奇特的操作时,例如等待响应、发送更多数据、计算字节、连接到奇怪的端口等,请使用 fsockopen。

A long time ago, if you wanted an easy time, you had to use curl extension.

If your host did not provide it, then you were stuck using fsockopen, which is more tedious and finicky, though very versatile.

In more recent versions of PHP, they gave you file_get_contents(), which can save a lot of lines of fopen/fsockopen code for doing something simple like getting the content of a file.

Now, whenever you want to do a simple read of a file, use file_get_contents(). If it is a remote file, you can still get it if your allow_url_fopen in php.ini is set to true.

If allow_url_fopen is not true and you can't change it and you need a remote file, then use curl. Curl can also put things in remote files. file_put_contents() can also put things in files and save some lines of code.

Use fsockopen when you need to do fancy arbitrary things over a network connection, like wait for a response, send more data, count bytes, connect to weird ports, etc.

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