table_article_list.php 626 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. //header('Content-type: application/json; charset=utf8');
  3. require_once "../path.php";
  4. require_once "../sync/function.php";
  5. $input = (object) [
  6. "database" => _FILE_DB_USER_ARTICLE_,
  7. "table" => "article_list",
  8. "uuid" => "id",
  9. "modify_time" => "modify_time",
  10. "receive_time" => "modify_time",
  11. "insert" => [
  12. 'id',
  13. 'collect_id',
  14. 'collect_title',
  15. 'article_id',
  16. 'level',
  17. 'title',
  18. 'create_time',
  19. 'modify_time'
  20. ],
  21. "update" => [
  22. 'collect_id',
  23. 'collect_title',
  24. 'article_id',
  25. 'level',
  26. 'title',
  27. 'create_time',
  28. 'modify_time'
  29. ]
  30. ];
  31. do_sync($input);
  32. ?>