還有一個以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 選項開啟。
- $fp = fsockopen("www.example.com",
80, $errno, $errstr, 30);- if (!$fp) {
- echo "$errstr ($errno)<br />n";
- } else {
- $out = "GET / HTTP/1.1rn";
- $out .= "Host: www.example.comrn";
- $out .= "Connection: Closernrn";
- fwrite($fp, $out);
- while (!feof($fp)) {
- echo fgets($fp, 128);
- }
- fclose($fp);
- }
以上就是PHP fsockopen函數的具體使用方法,供大家參考學習。