03-ct_dbm.sgml

来自「PHPLOB注释详细版 使用模板技术的好帮手 PHP最有用的东东了」· SGML 代码 · 共 37 行

SGML
37
字号
<!-- $Id: 03-ct_dbm.sgml,v 1.1.1.1 2000/04/17 16:40:00 kk Exp $ --><sect1>CT_Dbm<p>The <tt/Session/ class used to contain a bit of SQL to read andwrite session data from and to a database. To make sessionsdatabase independent, <tt/Session/ now makes all storageaccesses through a container class. To let <tt/Session/ use a DBMdatabase file as a container, you use <tt/CT&lowbar;Dbm/.<sect2>Instance variables<p><table><tabular ca="">dbm&lowbar;file<colsep>The path to the dbm file (must exist already AND must be writable by the server process)<rowsep></tabular><caption>Accessible instance variables.</caption></table><sect2>Example<p>Use a subclass to provide the appropriate parameters to your container. Usually your subclass looks like this: <tscreen><code>class My&lowbar;Dbm extends CT&lowbar;Dbm {	var $dbm&lowbar;file = "data/session.dbm";}</code></tscreen>You can then use My&lowbar;Dbm in class Session. Reference itby putting "My&lowbar;Dbm" in the "that&lowbar;class" variable.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?