mirror of
https://github.com/danbulant/phpdroid
synced 2026-09-17 13:23:57 +00:00
5 lines
115 B
PHP
5 lines
115 B
PHP
<?
|
|
$app = json_decode(file_get_contents("test.json"), true);
|
|
foreach ($app as $x) {
|
|
echo $x["path"]."\n";
|
|
}
|