$web="http://api.lomp.cz/category/";
$json=file($web);
$jsonObject=json_decode($json[0],true);
foreach ($jsonObject as $rowIndex=>$row) {
echo "[".$rowIndex."]";
foreach ($row as $colIndex => $col) {
echo " ".$colIndex." = ".$col."";
}
}