ホームページ  >  記事  >  バックエンド開発  >  ucenter ホームは fsockopen をサポートしていませんが、culr 環境での ucenter と modoer 間の通信の問題をサポートしています

ucenter ホームは fsockopen をサポートしていませんが、culr 環境での ucenter と modoer 間の通信の問題をサポートしています

WBOY
WBOYオリジナル
2016-07-29 08:46:31841ブラウズ

そこで、エンコードの問題なのか、ファイルのパーミッションの問題なのか、サポートされていない機能なのかを疑って調べたところ、Wanwang の L1 ホストは fsockopen をサポートしておらず、uc_client/client.php ファイルの uc_fopen に問題があることがわかりました。コードは次のとおりです:

コードをコピー コードは次のとおりです:


function uc_fopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE、$ip = ''、$timeout = 15、$block = TRUE) {
$return = '';
$matches = parse_url($url);
!isset($matches['host']); $matches['host' ] = '';
!isset($matches['path']) && $matches['path'] = '';
!isset($matches['query']) && $matches ['クエリ'] = '';
!isset($matches['ポート']) && $matches['ポート'] = '';
$host = $matches['host'];一致['パス'] ? $matches['パス'].($matches['クエリ'] ? '?'.$matches['クエリ'] : '') : '/'; ($matches['port ']) ? $matches['port'] : 80;
if($post) {
$out = "POST $path HTTP/1.0rn" .= "受け入れます: * /*rn";
//$out .= "リファラー: $boardurlrn";
$out .= "Accept-Language: zh-cnrn";
$out .= "Content-Type: application/x-www- form-urlencodedrn";
$out .= "ユーザーエージェント: $_SERVER[HTTP_USER_AGENT]rn";
$out .= "ホスト: $hostrn";
$out .= 'コンテンツの長さ: '.strlen($ post)."rn" ;
$out .= "接続: 閉じる";
$out .= "Cookie: $cookiernrn"; $post;
} else {
$out = "GET $path HTTP/1.0rn";
$out .= "受け入れる: */*rn"; $out .= "受け入れ言語: zh-cnrn";
$out .= "ユーザーエージェント: $_SERVER[HTTP_USER_AGENT]rn"; ホスト: $hostrn";接続: Closern";
$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);
@fwrite( $fp, $out) ;
$status = stream_get_meta_data($fp);
if(!$status['timed_out']) {
while (!feof($fp)) {
if(($header = @fgets) ($fp)) && ($header == "rn" || $header == "n")) {
break;
}
}
$stop = false; feof($fp) && ! $stop) {
$ data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
$return .= $data; $limit -= strlen( $data);
$stop = $limit }
}
@fclose($fp);


fsockopen 関数は使用できません幸いにも、curl がサポートされており、file_get_contents もサポートされているので、次のように uc_fopen 関数を使用します


。コードは次のとおりです:


function uc_fopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE) {
$return = '';
curl_setopt($curl, CURLOPT_URL, $url);
if ($post) {
curl_setopt($curl, CURLOPT_POST, 1);curl_setopt($curl, CURLOPT_POSTFIELDS, $post)
}
if($cookie) {
curl_setopt($curl, CURLOPT_COOKIE, $cookie);
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

if (curl_err)いいえ($カール)) {
echo '
 エラー :
'.curl_error($curl);
return $return;

} つまり、uc_client/client.php と modoer uc_cilent/client.php の下の uhome は、uc_open 関数を変更しただけです。笑、curl を使うのは初めてです。インターネットにはまだたくさんの情報があります。障害はありませんが、この変更が他のものに影響を与えるかどうかはわかりません。まだテスト中です。 。 。 。 上記は、fsockopen をサポートしていないが culr 環境をサポートしている ucenter ホームでの ucenter と modoer の間の通信の問題を、ucenter ホームの内容も含めて紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。