funcs.inc

来自「很棒的在线教学系统」· INC 代码 · 共 22 行

INC
22
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?