ed.brz9.dev/proj/map/asset/php/handler.php

21 lines
366 B
PHP

<?php
$data = file_get_contents('php://input');
//echo $data;
//$fn = "ing.test";
$fp = "asset/json/";
$bufp = "asset/json/bu/";
$buts = date("-Y-m-d_H:i:s");
$fn = $fp . $uri[2] . ".json";
$bufn = $bufp . $uri[2] . $buts . ".json";
file_put_contents($fn, $data);
copy($fn, $bufn);
//file_put_contents($fn, $data);
//file_put_contents("rtest.json", $data);
?>