php fsockopen 卷曲 file_get_contents
我对这些东西很陌生。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很久以前,如果你想要轻松一点,你必须使用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.