程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 詳解PHP fsockopen的使用方法

詳解PHP fsockopen的使用方法

編輯:關於PHP編程

還有一個以curl_開頭的函數,可以實現很多功能。有時間要好好研究!下面是關於fscokopen的介紹

1.PHP fsockopen函數說明:

Open Internet or Unix domain socket connection(打開套接字鏈接)

Initiates a socket connection to the resource specified by target .

fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets() , fgetss() , fwrite() , fclose() , and feof() ).就是返回一個文件句柄

開啟PHP fsockopen這個函數

PHP fsockopen需要 PHP.ini 中 allow_url_fopen 選項開啟。
 

  1. $fp = fsockopen("www.example.com",
     80, $errno, $errstr, 30);   
  2. if (!$fp) {   
  3. echo "$errstr ($errno)<br />n";   
  4. } else {   
  5. $out = "GET / HTTP/1.1rn";   
  6. $out .= "Host: www.example.comrn";   
  7. $out .= "Connection: Closernrn";   
  8.  
  9. fwrite($fp, $out);   
  10. while (!feof($fp)) {   
  11. echo fgets($fp, 128);   
  12. }   
  13. fclose($fp);   
  14. }  

以上就是PHP fsockopen函數的具體使用方法,供大家參考學習。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved