PHP(9)获取JSON格式的数据
2019-05-28 本文已影响0人
弗兰克万岁
function search()
{
$url=apiHost;
$html = file_get_contents($url);
$row=json_decode($html);
return $row;
}
function search()
{
$url=apiHost;
$html = file_get_contents($url);
$row=json_decode($html);
return $row;
}