我正在尝试对谷歌货币转换器URL进行卷曲请求。这部分工作,我收回JSON数据,但数据似乎是错误的编码。如果我尝试转换编码或以任何方式调整值它不起作用,我的json_decode返回NULL。
我是否需要指定编码或是否与没有引号的键相关?
以下是从中获取结果的一些代码:
$url = "https://www.google.com/ig/calculator?hl=en&q=" . $amount . $from . "=?" . $to;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
$return = curl_exec($ch);
curl_close($ch);
var_dump($return);
结果通常是{lhs: "9Â 808.90 U.S. dollars",rhs: "7Â 986.40287 Euros",error: "",icc: true}
我将编码转换为ISO-8859-1并且它有适当的空格,但它仍然不能正确地json_decode ...
有什么建议吗?
答案 0 :(得分:1)
我从来没有得到那些奇怪的字符串。
test.php的
<?php
$amount = '10$';
$to = 'EUR';
$url = "https://www.google.com/ig/calculator?hl=en&q=" . $amount . $from . "=?" . $to;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
$return = curl_exec($ch);
curl_close($ch);
// dump the output
var_dump($return);
/*
string(59) "{lhs: "10 US$",rhs: "8.14199642 Euros",error: "",icc: true}"
*/
// quote the unquoted data from Google
$forJSON = str_replace(array('lhs', 'rhs', 'error', 'icc'), array('"lhs"', '"rhs"', '"error"', '"icc"'), $return);
// decode the JSON string and turn it into an array
$toArray = json_decode($forJSON, true);
// dump the array
print_r($toArray);
/*
Array
(
[lhs] => 9 808.90 U.S. dollars
[rhs] => 7 986.40287 Euros
[error] =>
[icc] => 1
)
*/
?>
你应该尝试的事情:
,
的程序中复制了9,808.90而且它是另一个字符答案 1 :(得分:0)
您的值为“808.90美元”。只需爆炸()字符串并提取数据。
$data = explode('"', $url);
$data = explode(' ', $data['3']);
$var = $data['0'];
return round($var,3);