API から返された JSON から値を取得しようとしていますが、そこに到達する方法がわかりません。以下は、返されたものと、現在アクセスしようとしている方法です。
array(1) { ["ticket"]=> array(17) { ["id"]=> int(707078) ["subject"]=> string(6) "werwer" ["replies_count"]=> int(0) ["comments_count"]=> int(0) ["last_activity_at"]=> string(20) "2013-05-03T10:13:52Z" ["created_at"]=> string(20) "2013-05-03T10:13:52Z" ["unanswered"]=> bool(true) ["archived"]=> bool(false) ["spam"]=> bool(false) ["trash"]=> bool(false) ["summary"]=> string(9) "werewrwer" ["source"]=> array(1) { ["web"]=> string(3) "api" } ["cc"]=> array(0) { } ["labels"]=> array(0) { } ["requester"]=> array(5) { ["id"]=> int(249190) ["email"]=> string(22) "steven@frontpage.co.uk" ["name"]=> string(6) "steven" ["agent"]=> bool(true) ["picture"]=> array(6) { ["thumb20"]=> string(81) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=20" ["thumb24"]=> string(81) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=24" ["thumb32"]=> string(81) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=32" ["thumb48"]=> string(81) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=48" ["thumb64"]=> string(81) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=64" ["thumb128"]=> string(82) "https://secure.gravatar.com/avatar/9baabb86969cbccb6230d298a04f3490.png?r=PG&s=128" } } ["content"]=> array(4) { ["html"]=> string(9) "werewrwer" ["text"]=> string(9) "werewrwer" ["truncated"]=> bool(false) ["attachments"]=> array(0) { } } ["starred"]=> bool(false) } }
$jsonResponse = json_decode($jsonResponse, true);
die($jsonResponse['ticket']['id']);