mirror of
https://github.com/danbulant/phpdroid
synced 2026-05-19 04:08:51 +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";
|
|
}
|