我是新來的這些東西。 fsockopen,curl和file_get_contents有什麼區別。 有人可以用簡單的方式解釋。我仔細閱讀了手冊,但我無法分辨它們之間的差異。php fsockopen curl file_get_contents
1
A
回答
2
很久以前,如果你想要一個簡單的時間,你必須使用捲曲延伸。
如果你的主機沒有提供它,那麼你被困在使用fsockopen,這是更乏味和挑剔,雖然非常靈活。
在更新的PHP版本中,他們給了你file_get_contents(),它可以節省大量的fopen/fsockopen代碼行來完成簡單的操作,例如獲取文件的內容。
現在,無論何時想要簡單讀取文件,都可以使用file_get_contents()。如果它是一個遠程文件,如果你的php.ini中的allow_url_fopen設置爲true,你仍然可以得到它。
如果allow_url_fopen不是真的,你不能改變它,你需要一個遠程文件,然後使用curl。 Curl也可以把東西放在遠程文件中。 file_put_contents()也可以把東西放在文件中並保存一些代碼行。
使用,當你需要通過網絡連接做花哨的任意事情,比如等待響應,發送更多的數據,算個字節,連接到怪異端口的fsockopen等
相關問題
- 1. fsockopen,cURL和file_get_contents很慢
- 2. file_get_contents或curl在php中?
- 3. PHP cURL,file_get_contents空白頁
- 4. 在PHP中使用curl替代fsockopen
- 5. php curl,fsockopen和HttpClient替代品
- 6. CURL,wget和file_get_contents
- 7. file_get_contents不起作用,但fsockopen工作
- 8. curl or fsockopen for paypal ipn
- 9. 使用代理時PHP cURL與file_get_contents
- 10. PHP的fsockopen子
- 11. PHP fsockopen()
- 12. php fsockopen
- 13. curl,如何使用file_get_contents?
- 14. 使用cURL代替file_get_contents
- 15. curl或file_get_contents不起作用
- 16. cURL相當於file_get_contents&stream_context_create
- 17. Curl,file_get_contents和Instagram的CDN
- 18. PHP的fsockopen()餅乾
- 19. PHP fsockopen幫助需要
- 20. PHP fsockopen WHOIS
- 21. socket_create與fsockopen php
- 22. php fsockopen連接
- 23. PHP fsockopen是慢
- 24. file_get_contents等價於curl函數
- 25. file_get_contents()和CURL的等價物?
- 26. PHP的fsockopen捲曲轉換
- 27. 在PHP中使用CURL如fsockopen()連接到SMTP?
- 28. 使用file_get_contents(PHP)
- 29. php file_get_contents很慢
- 30. fsockopen php的性能