使用 curl http://github.com/api/v2/json/user/show/username github 的用户 api 返回:
...,"login":"myUsername","email":"myEmail@test.com"}}**1**
为什么json后面有1?这是他们的错误,还是应该用于某些事情?
<?php
function getGithub($url="user/show/username") {
$github = curl_init();
curl_setopt($github, CURLOPT_URL, "http://github.com/api/v2/json/". $url);
return curl_exec($github);
}
尝试去
echo getGithub();
但既然最后有 1,我必须
echo rtrim(getGithub(), "1");