示例#1
0
if (!defined('KFM_BASE_PATH')) {
    define('KFM_BASE_PATH', dirname(__FILE__) . '/');
}
if (function_exists("date_default_timezone_set") && function_exists("date_default_timezone_get")) {
    @date_default_timezone_set(date_default_timezone_get());
}
// { load classes and helper functions
if (!function_exists('__autoload')) {
    function __autoload($class_name)
    {
        require_once KFM_BASE_PATH . 'classes/' . $class_name . '.php';
    }
}
require KFM_BASE_PATH . 'includes/lang.php';
require KFM_BASE_PATH . 'includes/db.php';
$kfm = new kfmBase();
require_once KFM_BASE_PATH . 'templating.php';
function kfm_dieOnError($error)
{
    if (!PEAR::isError($error)) {
        return;
    }
    echo '<strong>Error</strong><br />' . $error->getMessage() . '<br />' . $error->userinfo . '<hr />';
    exit;
}
function setting_array($str)
{
    $str = trim($str, ' ,');
    if ($str == '') {
        return array();
    }