PlantsSendController.php 428 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Http\logic\api\SendCodeLogic;
  4. class PlantsSendController
  5. {
  6. // 天一宏 短信发送
  7. public function send($phone, $ip, $UserID, $Content)
  8. {
  9. $logic = new SendCodeLogic();
  10. if ($logic->plants_send($phone, $ip, $UserID,$Content) === false) {
  11. return apiReturnFail($logic->getError());
  12. }
  13. return apiReturnSuc();
  14. }
  15. }