display_tbl.lib.php
来自「WEBGAME源码,有架设说明,只是非常简单」· PHP 代码 · 共 26 行
PHP
26 行
<?php/* $Id: display_tbl.lib.php,v 2.90 2005/11/14 15:01:20 cybot_tm Exp $ */// vim: expandtab sw=4 ts=4 sts=4:/** * Set of functions used to display the records returned by a sql query *//** * Defines the display mode to use for the results of a sql query * * It uses a synthetic string that contains all the required informations. * In this string: * - the first two characters stand for the action to do while * clicking on the "edit" link (eg 'ur' for update a row, 'nn' for no * edit link...); * - the next two characters stand for the action to do while * clicking on the "delete" link (eg 'kp' for kill a process, 'nn' for * no delete link...); * - the next characters are boolean values (1/0) and respectively stand * for sorting links, navigation bar, "insert a new row" link, the * bookmark feature, the expand/collapse text/blob fields button and * the "display printable view" option. * Of course '0'/'1' means the feature won't/will be enabled. * * @param string the synthetic value for display_mode (see
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?