-1
{ "status_code": 200, "status_txt": "OK", "data": { "long_url": "http:\/\/google.com\/", "url": "http:\/\/bit.ly\/17A2GVj", "hash": "17A2GVj", "global_hash": "3j4ir4", "new_hash": 0 } } 

私がした後、私はこのようなものを得る

$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
    CURLOPT_RETURNTRANSFER => 1,
    CURLOPT_URL => 'https://api-ssl.bitly.com/v3/shorten?access_token=xxx&longUrl=http%3A%2F%2Fgoogle.com%2F',
    CURLOPT_USERAGENT => 'Mozilla/4.0'
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);

echo $resp;

「ハッシュ」の読み方

4

1 に答える 1

2
$respObj = json_decode($resp);
echo $respObj->data->hash;

json_decodeは、デフォルトで のインスタンスを返しますstdClassstdClassでメンバーにアクセスし->ます。

于 2013-10-13T15:51:08.920 に答える