errorCode.php 748 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * 短信返回错误码
  4. */
  5. return [
  6. 'msgid' => '提交失败',
  7. 'Missing username' => '接口缺少用户名',
  8. 'Missing password' => '接口缺少密码',
  9. 'Missing apikey' => '接口缺少APIKEY',
  10. 'Missing recipient' => '手机号码为空',
  11. 'Missing message content' => '短信内容为空或编码不正确',
  12. 'Account is blocked' => '账户已被禁用',
  13. 'Unrecognized encoding' => '编码未能识别',
  14. 'APIKEY or password error' => 'APIKEY或密码错误',
  15. 'Unauthorized IP address' => 'IP地址未授权',
  16. 'Account balance is insufficient' => '短信接口余额不足',
  17. 'Throughput Rate Exceeded' => '发送频率受限',
  18. 'Invalid md5 password length' => '密码长度非法',
  19. ];