首頁  >  文章  >  後端開發  >  ucenter home 不支援fsockopen但支援culr環境下ucenter與modoer通訊問題

ucenter home 不支援fsockopen但支援culr環境下ucenter與modoer通訊問題

WBOY
WBOY原創
2016-07-29 08:46:31819瀏覽

所以就懷疑是否編碼問題,或檔案權限問題,或是函數不支援問題,經過排查發現原來是萬網的L1主機不支援fsockopen,在檔案uc_client/client.php中的uc_fopen中出現了問題,這裡的程式碼是這樣:

複製程式碼 程式碼如下:


function uc_fopen($url, $limit = 0, $post = '', $cookie = '', $bysock '', $timeout = 15, $block = TRUE) {
$return = '';
$matches = parse_url($url);
!isset($matches['host']) && $matches['host' ] = '';
!isset($matches['path']) && $matches['path'] = '';
!isset($matches['query']) && $matches['query'] = '';
!isset($matches['port']) && $matches['port'] = '';
$host = $matches['host'];
$path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';
$port = !empty($matches['port ']) ? $matches['port'] : 80;
if($post) {
$out = "POST $path HTTP/1.0rn";
$out .= "Accept: */*rn";
//$out .= "Referer: $boardurlrn";
$out .= "Accept-Language: zh-cnrn";
$out .= "Content-Type: application/x-www-form-urlencodedrn";
$out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]rn";
$out .= "Host: $hostrn";
$out .= 'Content-Length: '.strlen($post)."rn" ;
$out .= "Connection: Closern";
$out .= "Cache-Control: no-cachern";
$out .= "Cookie: $cookiernrn";
$out .= $post;
} elseokiernrn";
$out .= $post;
} else {
$out = "GET $path HTTP/1.0rn";
$out .= "Accept: */*rn";
//$out .= "Referer: $boardurlrn";
$out .= "Accept -Language: zh-cnrn";
$out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]rn";
$out .= "Host: $hostrn";
$out .= "rn"; Connectionrn"; Connection
$out .= "rn"; Connectionrn"; Connection
$out .= "Cookie: $cookiernrn";
}
$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
if(!$fp ) {
return '';//note $errstr : $errno rn
} else {
stream_set_blocking($fp, $block);
stream_set_timeout($fp, $timeout);
@fwout($fp, $timeout);
@fwout) $ ;
$status = stream_get_meta_data($fp);
if(!$status['timed_out']) {
while (!feof($fp)) {
if(($header = @fgets($fp)) && ($header == "rn" || $header == "n")) {
break;
}
}
$stop = false;
while(!feof($fp) && !$stop) {
while(!feof($fp) && !$stop) {
$ data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
$return .= $data;
if($limit) {
$limit -= strlen($ data);
$stop = $limit }
}
}

@fclose($fp);
return $return;
}

} return $return; } }

其它方法了,幸虧支持curl,file_get_contents也支持,經考慮就用curl吧,修改了uc_fopen函數,如下;



複製程式碼

程式碼如下:

mit , $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE) {
$return = '';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
if($post) {
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt( $curl, CURLOPT_POSTFIELDS, $post);
}
if($cookie) {
curl_setopt($curl, CURLOPT_COOKIE, $cookie);
}
curl_setopt(urlcurl_setop CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$return = curl_exec($curl);
if (curl_errno($curl)) {

e);
if (curl_errno($curl)) {

>
'.curl_error($curl);

}

curl_close($curl);

return $return; 🎜} 🎜🎜🎜於是modoer下的uc_client/cliclient.php和,就這樣修改了uc_open函數,呵呵,第一次使用curl,網路上的資料還是好多的,所以也沒有什麼阻礙,不過就不知這個修改會不會影響其它的東西,還有待測試羅。 。 。 。 🎜 以上就介紹了ucenter home 不支援fsockopen但支援culr環境下下ucenter與modoer通訊問題,包括了ucenter home方面的內容,希望對PHP教學有興趣的朋友有所幫助。 🎜 🎜 🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn