12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm
- * User:林志杰
- * Email:[email protected]
- * Motto:纵有疾风起,人生不言弃!
- * Time:2020/1/2 22:35
- */
- return [
- "success" => 1,
- "error" => 0,
- "not_login" => -1,
- "user_is_register" => -2,
- "action_not_fund" => -3,
- "controller_not_fund" => -4,
- "mysql" => [
- "table_normal" => 1, // 正常
- "table_pedding" => 0, // 待审核
- "table_delete" => 99, // 删除
- ]
- ];
|