ReceivedSms.php 248 B

12345678910111213141516
  1. <?php
  2. namespace Heanup\App\Api\Controller;
  3. use Heanup\App\Api\Controller;
  4. class ReceivedSms extends Controller
  5. {
  6. protected function main()
  7. {
  8. file_put_contents(APP_DIR . "/test_msg.txt", json_encode($_REQUEST).PHP_EOL);
  9. }
  10. }