17 lines
277 B
PHP
17 lines
277 B
PHP
<?php
|
|
|
|
$texts = [
|
|
[
|
|
'id' => 0,
|
|
'name' => 'test text'
|
|
],
|
|
];
|
|
|
|
$fileDataMap = [
|
|
'texts.json' => $texts,
|
|
];
|
|
|
|
foreach ($fileDataMap as $file => $data) {
|
|
$path = __DIR__."/$file";
|
|
file_put_contents($path, json_encode($data, JSON_PRETTY_PRINT));
|
|
}
|