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

GeneralConst.php 654B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Http\Services\ConstDef;
  3. class GeneralConst
  4. {
  5. // 特殊帳號
  6. const ID_ADMIN = 1;
  7. // 網址狀態
  8. const URL_ALL = 0;
  9. const URL_OK = 1;
  10. const URL_NO = 2;
  11. public static $urlMap = array(
  12. self::URL_ALL => '全部',
  13. self::URL_OK => '有效',
  14. self::URL_NO => '無效',
  15. );
  16. // API 狀態碼
  17. const API_OK = 0;
  18. const API_TOKEN_ERR = 1;
  19. const API_PARAM_ERR = 11;
  20. public static $apiMap = array(
  21. self::API_OK => '成功',
  22. self::API_TOKEN_ERR => 'TOKEN 錯誤',
  23. self::API_PARAM_ERR => '參數錯誤',
  24. );
  25. }