file_get_contents是可以的,
<?phpecho "<meta http-equiv='Content-Type' content='text/html charset=utf-8' />"
$m = file_get_contents("https://openapi.youku.com/v2/videos/show_basic.json?video_id=XOTQ1NDU5ODk2&client_id=319cdac7553fa298")
print_r(json_decode($m))
?>
输出结果:
$data = file_get_contents($url)//目的页面内容获取 $t = json_decode($data,1)//转换为PHP数组 //处理... $ch = curl_init()curl_setopt($ch, CURLOPT_URL, $urlo)//数据发送地址 curl_setopt($ch, CURLOPT_POST, 1)curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data)//发送的数据数组 curl_exec($ch)欢迎分享,转载请注明来源:内存溢出
评论列表(0条)