Below for everyone to share a piece of PHP code, explaining the 360 browser exported Favdb SQLite database file converted to HTML, the following code is simple to understand, interested friends to see it.
The PHP code looks like this:
<?php $book _mark_name = ' book_mark.html '; $content = file_get_contents (' Tb_fav.json '); Var_dump ($content); $content _list = Json_decode ($content, ' utf-8 '); $content _list = $content _list[' RECORDS '); $content _header = "". "
". "
". "<title>Bookmarks</title>". "Bookmarks
". "
"; File_put_contents ($book _mark_name, $content _header); foreach ($content _list as $item) {$href = $item [' url ']; $add _date = $item [' Create_time ']; $last _visit = $item [' Last_modify_time ']; $last _modified = $item [' Last_modify_time ']+1; $title = $item [' title ']; $content = "
-
$title "."
"; File_put_contents ($book _mark_name, $content, file_append); } $content _tail = "
"; File_put_contents ($book _mark_name, $content _tail,file_append); echo ' success ';
The above PHP code is a small series to share the 360 browser exported favdb SQLite database file into the entire content of HTML, I hope you like it.