14 lines
479 B
PHP
Raw Permalink Normal View History

2023-05-11 11:20:22 +06:00
<?php
$json_files = array_filter(scandir(__DIR__), function ($item) {
return str_ends_with($item, ".json");
});
foreach ($json_files as $json_file) {
2023-07-14 20:21:00 +06:00
$list = json_decode(file_get_contents(__DIR__ . 'test.php/' . $json_file), true);
2023-05-11 11:20:22 +06:00
usort($list, function ($o1, $o2) {
return $o1['id'] <=> $o2['id'];
});
2023-07-14 20:21:00 +06:00
file_put_contents(__DIR__ . 'test.php/' . $json_file, json_encode($list, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
2023-05-11 11:20:22 +06:00
}