📄 funcs.inc
字号:
## this file contains various useful helper functions, to interfer# with the ewiki database from within another site engine## may be there is something useful in here for you, too##-- save newest pagesfunction save_newest_pages(){ $sorted = array(); foreach (ewiki_database("GETALL", array("lastmodified", "flags", "version")) as $row) { if (($row["flags"] & EWIKI_DB_F_TYPE) == EWIKI_DB_F_TEXT) { $sorted[$row["id"]] = $row["lastmodified"]; } } arsort($sorted); $n = 0; $o = ""; foreach ($sorted as $id=>$uu) { $o .= '
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -