时间:2021-07-01 10:21:17 帮助过:12人阅读
$url="xxx";$opts = array( 'http'=>array( 'user_agent' => "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)", ) ); $context = stream_context_create($opts); $neirong = file_get_contents($url, false, $context); header("content-Type: text/html; charset=Utf-8"); ob_end_flush(); $encode = mb_detect_encoding($neirong, array("ASCII","UTF-8","GB2312","GBK","BIG5")); echo $encode."
"; if ($encode!="UTF-8") { $neirong=mb_convert_encoding($neirong, "UTF-8", $encode); } echo $neirong;
...$neirong = file_get_contents($url, false, $context);echo base64_encode($neirong);
...$neirong = file_get_contents($url, false, $context);echo base64_encode($neirong);
77u/ICAgIOiwjeeWlOahteaYlOaZhOixkeebqOaak++8jOmAveS6juWHkeS+k+WyqeeGmueeg+ebqOa0headremAv
$c = '77u/ICAgIOiwjeeWlOahteaYlOaZhOixkeebqOaak++8jOmAveS6juWHkeS+k+WyqeeGmueeg+ebqOa0headremAv';echo base64_decode($c);
$c = '77u/ICAgIOiwjeeWlOahteaYlOaZhOixkeebqOaak++8jOmAveS6juWHkeS+k+WyqeeGmueeg+ebqOa0headremAv';echo base64_decode($c);
把?集的地址?出?。
把?集的地址?出?。
需要??集的??做些?理才行。
=224){ $result .= change(mb_substr($content,$i,3)); $i=$i+3; }else{ $result .= mb_substr($content,$i,1); $i=$i+1; }}echo $result;// ?理function change($str){ $ignore = array('“','”','!','…',':',',',','); if(in_array($str, $ignore)){ return $str; } $prefix = "%u"; $postfix = ""; $str = iconv('UTF-8', 'UCS-2', $str); $arrstr = str_split($str, 2); $unistr = ''; for($i = 0, $len = count($arrstr); $i < $len; $i++) { $tmp = hexdec(bin2hex($arrstr[$i])); $tmp = str_pad(dechex($tmp),4,'0',STR_PAD_LEFT); $tmp = decrypt(substr($tmp,2,2).substr($tmp,0,2)); $unistr .= $prefix . $tmp . $postfix; } return unescape($unistr);}// 解密function decrypt($d){ $result .= str_pad(dechex(hexdec($d)-100),4,'0',STR_PAD_LEFT); return $result;}// ?中文function unescape($str) { $ret = ''; $len = strlen ( $str ); for($i = 0; $i < $len; $i ++) { if ($str [$i] == '%' && $str [$i + 1] == 'u') { $val = hexdec ( substr ( $str, $i + 2, 4 ) ); if ($val < 0x7f) $ret .= chr ( $val ); else if ($val < 0x800) $ret .= chr ( 0xc0 | ($val >> 6) ) . chr ( 0x80 | ($val & 0x3f) ); else $ret .= chr ( 0xe0 | ($val >> 12) ) . chr ( 0x80 | (($val >> 6) & 0x3f) ) . chr ( 0x80 | ($val & 0x3f) ); $i += 5; } else if ($str [$i] == '%') { $ret .= urldecode ( substr ( $str, $i, 3 ) ); $i += 2; } else $ret .= $str [$i]; } return $ret; } ?>
fdipzone ,用你的方法还是输出的乱码,对解密不太了解
你在?出的html中加入
它源??是做了些??的,我那?程序已?是????了。
我把?集的也?出?,直接?行就可以了。
$v ) { $headerArr[] = $n .':' . $v; }$ch = curl_init();curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_HTTPHEADER , $headerArr ); //构造IPcurl_setopt($ch, CURLOPT_REFERER, 'http://www.ziyouge.com/'); //构造来路$content = curl_exec($ch);$content = substr($content,3);if($error=curl_error($ch)){ die($error);}curl_close($ch);// 分析程序$result = '';$str_length = mb_strlen($content);$i=0;while ($i<=$str_length){ $temp_str=mb_substr($content,$i,1); $ascnum=Ord($temp_str); if ($ascnum>=224){ $result .= change(mb_substr($content,$i,3)); $i=$i+3; }else{ $result .= mb_substr($content,$i,1); $i=$i+1; }}echo '';echo $result;// ?理function change($str){ $ignore = array('“','”','!','…',':',',',','); if(in_array($str, $ignore)){ return $str; } $prefix = "%u"; $postfix = ""; $str = iconv('UTF-8', 'UCS-2', $str); $arrstr = str_split($str, 2); $unistr = ''; for($i = 0, $len = count($arrstr); $i < $len; $i++) { $tmp = hexdec(bin2hex($arrstr[$i])); $tmp = str_pad(dechex($tmp),4,'0',STR_PAD_LEFT); $tmp = decrypt(substr($tmp,2,2).substr($tmp,0,2)); $unistr .= $prefix . $tmp . $postfix; } return unescape($unistr);}// 解密function decrypt($d){ $result = str_pad(dechex(hexdec($d)-100),4,'0',STR_PAD_LEFT); return $result;}// ?中文function unescape($str) { $ret = ''; $len = strlen ( $str ); for($i = 0; $i < $len; $i ++) { if ($str [$i] == '%' && $str [$i + 1] == 'u') { $val = hexdec ( substr ( $str, $i + 2, 4 ) ); if ($val < 0x7f) $ret .= chr ( $val ); else if ($val < 0x800) $ret .= chr ( 0xc0 | ($val >> 6) ) . chr ( 0x80 | ($val & 0x3f) ); else $ret .= chr ( 0xe0 | ($val >> 12) ) . chr ( 0x80 | (($val >> 6) & 0x3f) ) . chr ( 0x80 | ($val & 0x3f) ); $i += 5; } else if ($str [$i] == '%') { $ret .= urldecode ( substr ( $str, $i, 3 ) ); $i += 2; } else $ret .= $str [$i]; } return $ret; } ?>
你在?出的html中加入
它源??是做了些??的,我那?程序已?是????了。
我把?集的也?出?,直接?行就可以了。
[/code]
可能吧,dev版。。
可能吧,dev版。。
估??php mb string 的版本有?。
?境??只能靠你自己?理了,我???有??多?境。
估??php mb string 的版本有?。
?境??只能靠你自己?理了,我???有??多?境。
//例如:$str="?"; $str = iconv('UTF-8', 'UCS-2', $str);正常的结果是“V^”;不正常的结果是“^V”;请教这个该怎么解决
找到方法了。。不同平台转换的usc-2编码不同
对于 UCS-2, linux 下默认是 UCS-2BE。用iconv(指定UCS-2)来转换生成的是 UCS-2BE 的 unicode。如果转换windows平台过来的 UCS-2, 需要指定 UCS-2LE。
嗯
$str = iconv('UTF-8', 'UCS-2', $str);
改?
$str = iconv('UTF-8', 'UCS-2LE', $str);
就可以了。