Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 04cc76e487e90e9c347b4c0ca08ba2e0 > files > 15

php-pear-Log-1.12.7-3.mga4.noarch.rpm

<?php

require_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);