续 [PHP解析土豆FLV真实地址] 后 再发布 PHP解析 酷6视频 mp4真实地址代码
支持以下两种格式
http://v.ku6.com/show/kyaZJccsLKAsgyVw.html
http://hd.ku6.com/show/m0OTTkGVDwbwSk6w.html
演示地址:http://cheon.info/ku6.php
详细代码点击这里查看
从78行到112行是 unicode转utf-8的函数
支持js unicode(例:\u6d77)和html unicode(例:#31461;)的转换
[php]<?php
/*
* CheonNii(泉泉)
* http://cheon.info
*/
function curl_get_contents($url)
{
if(!function_exists('curl_init')) {
return false;
} else {
$user_agent = $_SERVER['HTTP_USER_AGENT'];
...