获取message中的值



 http://git.oschina.net/startbbs/startbbs/graph/master.json

这里是一段json数据,想获取message的值,循环出来。如何弄。 先转成数组,对吧

json php

三十岁中年人 11 years, 3 months ago

 <?php
    $message = array();
    $json = json_decode(
         file_get_contents('http://git.oschina.net/startbbs/startbbs/graph/master.json'),
         true);
    foreach($json['commits'] as $commit) 
         $message[] = $commit['message'];
    print_r($message);
?>

终级鬼畜蓝蓝路 answered 11 years, 3 months ago

Your Answer