Orl 短網址,供三星、福斯使用

GeneralInnerServiceService.php 328B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Services\Api;
  3. class GeneralInnerServiceService
  4. {
  5. public function __construct()
  6. {
  7. }
  8. public function validate($token)
  9. {
  10. $res = \DB::select(\DB::raw("SELECT id as oid from users where password='" . $token . "'"));
  11. return $res[0]->oid ?? 0;
  12. }
  13. }