You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
431 B

<?php
date_default_timezone_set("Asia/Taipei");
$postData = file_get_contents('php://input');
echo "收到:" . $postData . date("Y-m-d H:i:s") . "<br>";
$myfile = fopen("receive_sanlien.txt", "a") or die("Unable to open file!");
fwrite($myfile, $postData . date("Y-m-d H:i:s") . "\n");
fclose($myfile);
#with fopen("log.txt", "a") as f:
# f.write("asdf");
#$data = json_encode(array('a'=>" 234 ", 'b'=>2));
#echo $data;
?>