您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

status.php 333B

12345678910111213141516171819202122232425
  1. <?php
  2. require_once "utils.php";
  3. function check_token()
  4. {
  5. if (!check_table_field("Authorization", "tokens", "token"))
  6. error(401, "Invalid token");
  7. }
  8. function status_confirm($id)
  9. {
  10. check_token();
  11. }
  12. function status_create()
  13. {
  14. check_token();
  15. $status = get_post("status");
  16. }
  17. function status_feed()
  18. {
  19. check_token();
  20. }
  21. ?>