标签:style http os ar sp size ad on ef
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.baidu.com");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$echo = json_encode($response);
print_r($echo);
curl_close($ch);
标签:style http os ar sp size ad on ef
原文地址:http://www.cnblogs.com/kyee/p/3934388.html