mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-09-06 14:47:32 +08:00
10 lines
219 B
PHP
10 lines
219 B
PHP
<?php
|
|
|
|
header('content-type: application/json; charset=utf-8');
|
|
$path = '../runtime/order.json';
|
|
if (!file_exists($path)) {
|
|
exit('{"code":3,"msg":"文件不存在"}');
|
|
} else {
|
|
exit(file_get_contents($path));
|
|
}
|