Browse Source

配置代理

陈德本 5 năm trước cách đây
mục cha
commit
175213cd85
1 tập tin đã thay đổi với 16 bổ sung0 xóa
  1. 16 0
      App/Api/Controller/ReceivedSms.php

+ 16 - 0
App/Api/Controller/ReceivedSms.php

@@ -0,0 +1,16 @@
+<?php
+
+
+namespace Heanup\App\Api\Controller;
+
+
+use Heanup\App\Api\Controller;
+
+class ReceivedSms extends Controller
+{
+    protected function main()
+    {
+        file_put_contents(APP_DIR . "/test_msg.txt", json_encode($_REQUEST).PHP_EOL);
+    }
+
+}