?? sqlite.php
字號:
<?phprequire_once 'Log.php';/* Creating a new database connection. */$conf = array('filename' => 'log.db', 'mode' => 0666, 'persistent' => true);$logger =& Log::factory('sqlite', 'log_table', 'ident', $conf);$logger->log('logging an event', PEAR_LOG_WARNING);/* Using an existing database connection. */$db = sqlite_open('log.db', 0666, $error);$logger =& Log::factory('sqlite', 'log_table', 'ident', $db);$logger->log('logging an event', PEAR_LOG_WARNING);sqlite_close($db);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -