| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- //header('Content-type: application/json; charset=utf8');
- require_once "../config.php";
- require_once "../sync/function.php";
- $input = (object) [
- "database" => _FILE_DB_SENTENCE_,
- "table" => "sent_block",
- "uuid" => "id",
- "modify_time" => "modify_time",
- "receive_time" => "receive_time",
- "insert" => [
- "id",
- "parent_id",
- "book",
- "paragraph",
- "owner",
- "lang",
- "author",
- "editor",
- "tag",
- "status",
- "modify_time",
- "receive_time"
- ],
- "update" => [
- "lang",
- "author",
- "editor",
- "tag",
- "status",
- "receive_time"
- ]
- ];
- do_sync($input);
- ?>
|