ReceivedSms.php 411 B

12345678910111213141516171819
  1. <?php
  2. namespace Heanup\App\Api\Controller;
  3. use Heanup\App\Api\Controller;
  4. use Heanup\Frame\Logger;
  5. class ReceivedSms extends Controller
  6. {
  7. protected function main()
  8. {
  9. Logger::setLog(file_get_contents("php://input"),APP_DIR . "/test_msg.txt");
  10. $this->showSuccess();
  11. // file_put_contents(APP_DIR . "/test_msg.txt", file_get_contents("php://input").PHP_EOL,FILE_APPEND);
  12. }
  13. }