Я довольно плохо знаком с json и массивами, и у меня есть следующее, но я не получаю никаких результатов от вывода Jenkins JSON.
Ссылка на вывод — http://resonant-rise.com/mcupdater/parser.php
Код
$url = "http://jenkins.jakimfett.com/job/AlchemyPlusPlus/lastSuccessfulBuild/api/json?pretty=true";
$output = json_decode(file_get_contents($url), true);
print "<pre>";
print_r($output);
print "</pre>";
foreach ($output->actions as $item) {
echo $item->fullDisplayName . "\n";
}
<?php
$url="http://jenkins.jakimfett.com/job/AlchemyPlusPlus/lastSuccessfulBuild/api/json?pretty=true";
$output = json_decode(file_get_contents($url), true);
echo "<pre>";
print_r($output);
echo "</pre>";
/* for properties like fullDisplayName, id, keeplog etc .. directly use echo */
echo $output['fullDisplayName'];
/* for properties like actions and artifacts */
foreach($output['actions'] as $action){
print_r($action); /* actions itself is array so use print_r */
}
?>
Других решений пока нет …