闸门小程序接口

This commit is contained in:
2025-07-07 02:12:33 +08:00
commit cdc59b4598
67 changed files with 1860 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
if( $code == 0 )
{
$array = array();
$array['error_code'] = 0;
$array['data'] = $data;
ajax_echo( json_encode( $array ));
}
else
{
$array = array();
$array['error_code'] = intval($code);
$array['error_message'] = $message;
ajax_echo( json_encode( $array ));
}
?>