⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.php

📁 FP2 CRM code+Mysql DB
💻 PHP
📖 第 1 页 / 共 3 页
字号:
<?php//// +----------------------------------------------------------------------+// | PHP Version 5                                                        |// +----------------------------------------------------------------------+// | Copyright (c) 1997-2004 The PHP Group                                |// +----------------------------------------------------------------------+// | This source file is subject to version 3.0 of the PHP license,       |// | that is bundled with this package in the file LICENSE, and is        |// | available through the world-wide-web at the following url:           |// | http://www.php.net/license/3_0.txt.                                  |// | If you did not receive a copy of the PHP license and are unable to   |// | obtain it through the world-wide-web, please send a note to          |// | license@php.net so we can mail you a copy immediately.               |// +----------------------------------------------------------------------+// | Author: Stig Bakken <ssb@php.net>                                    |// +----------------------------------------------------------------------+//// $Id: Config.php,v 1.52 2004/01/08 17:33:12 sniper Exp $require_once 'PEAR.php';require_once 'System.php';/** * Last created PEAR_Config instance. * @var object */$GLOBALS['_PEAR_Config_instance'] = null;if (!defined('PEAR_INSTALL_DIR') || !PEAR_INSTALL_DIR) {    $PEAR_INSTALL_DIR = PHP_LIBDIR . DIRECTORY_SEPARATOR . 'pear';} else {    $PEAR_INSTALL_DIR = PEAR_INSTALL_DIR;}// Below we define constants with default values for all configuration// parameters except username/password.  All of them can have their// defaults set through environment variables.  The reason we use the// PHP_ prefix is for some security, PHP protects environment// variables starting with PHP_*.if (getenv('PHP_PEAR_SYSCONF_DIR')) {    define('PEAR_CONFIG_SYSCONFDIR', getenv('PHP_PEAR_SYSCONF_DIR'));} elseif (getenv('SystemRoot')) {    define('PEAR_CONFIG_SYSCONFDIR', getenv('SystemRoot'));} else {    define('PEAR_CONFIG_SYSCONFDIR', PHP_SYSCONFDIR);}// Default for master_serverif (getenv('PHP_PEAR_MASTER_SERVER')) {    define('PEAR_CONFIG_DEFAULT_MASTER_SERVER', getenv('PHP_PEAR_MASTER_SERVER'));} else {    define('PEAR_CONFIG_DEFAULT_MASTER_SERVER', 'pear.php.net');}// Default for http_proxyif (getenv('PHP_PEAR_HTTP_PROXY')) {    define('PEAR_CONFIG_DEFAULT_HTTP_PROXY', getenv('PHP_PEAR_HTTP_PROXY'));} elseif (getenv('http_proxy')) {    define('PEAR_CONFIG_DEFAULT_HTTP_PROXY', getenv('http_proxy'));} else {    define('PEAR_CONFIG_DEFAULT_HTTP_PROXY', '');}// Default for php_dirif (getenv('PHP_PEAR_INSTALL_DIR')) {    define('PEAR_CONFIG_DEFAULT_PHP_DIR', getenv('PHP_PEAR_INSTALL_DIR'));} else {    if (@is_dir($PEAR_INSTALL_DIR)) {        define('PEAR_CONFIG_DEFAULT_PHP_DIR',               $PEAR_INSTALL_DIR);    } else {        define('PEAR_CONFIG_DEFAULT_PHP_DIR', $PEAR_INSTALL_DIR);    }}// Default for ext_dirif (getenv('PHP_PEAR_EXTENSION_DIR')) {    define('PEAR_CONFIG_DEFAULT_EXT_DIR', getenv('PHP_PEAR_EXTENSION_DIR'));} else {    if (ini_get('extension_dir')) {        define('PEAR_CONFIG_DEFAULT_EXT_DIR', ini_get('extension_dir'));    } elseif (defined('PEAR_EXTENSION_DIR') && @is_dir(PEAR_EXTENSION_DIR)) {        define('PEAR_CONFIG_DEFAULT_EXT_DIR', PEAR_EXTENSION_DIR);    } elseif (defined('PHP_EXTENSION_DIR')) {        define('PEAR_CONFIG_DEFAULT_EXT_DIR', PHP_EXTENSION_DIR);    } else {        define('PEAR_CONFIG_DEFAULT_EXT_DIR', '.');    }}// Default for doc_dirif (getenv('PHP_PEAR_DOC_DIR')) {    define('PEAR_CONFIG_DEFAULT_DOC_DIR', getenv('PHP_PEAR_DOC_DIR'));} else {    define('PEAR_CONFIG_DEFAULT_DOC_DIR',           $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'docs');}// Default for bin_dirif (getenv('PHP_PEAR_BIN_DIR')) {    define('PEAR_CONFIG_DEFAULT_BIN_DIR', getenv('PHP_PEAR_BIN_DIR'));} else {    define('PEAR_CONFIG_DEFAULT_BIN_DIR', PHP_BINDIR);}// Default for data_dirif (getenv('PHP_PEAR_DATA_DIR')) {    define('PEAR_CONFIG_DEFAULT_DATA_DIR', getenv('PHP_PEAR_DATA_DIR'));} else {    define('PEAR_CONFIG_DEFAULT_DATA_DIR',           $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'data');}// Default for test_dirif (getenv('PHP_PEAR_TEST_DIR')) {    define('PEAR_CONFIG_DEFAULT_TEST_DIR', getenv('PHP_PEAR_TEST_DIR'));} else {    define('PEAR_CONFIG_DEFAULT_TEST_DIR',           $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'tests');}// Default for cache_dirif (getenv('PHP_PEAR_CACHE_DIR')) {    define('PEAR_CONFIG_DEFAULT_CACHE_DIR', getenv('PHP_PEAR_CACHE_DIR'));} else {    define('PEAR_CONFIG_DEFAULT_CACHE_DIR',           System::tmpdir() . DIRECTORY_SEPARATOR . 'pear' .           DIRECTORY_SEPARATOR . 'cache');}// Default for php_binif (getenv('PHP_PEAR_PHP_BIN')) {    define('PEAR_CONFIG_DEFAULT_PHP_BIN', getenv('PHP_PEAR_PHP_BIN'));} else {    define('PEAR_CONFIG_DEFAULT_PHP_BIN', PEAR_CONFIG_DEFAULT_BIN_DIR.           DIRECTORY_SEPARATOR.'php'.(OS_WINDOWS ? '.exe' : ''));}// Default for verboseif (getenv('PHP_PEAR_VERBOSE')) {    define('PEAR_CONFIG_DEFAULT_VERBOSE', getenv('PHP_PEAR_VERBOSE'));} else {    define('PEAR_CONFIG_DEFAULT_VERBOSE', 1);}// Default for preferred_stateif (getenv('PHP_PEAR_PREFERRED_STATE')) {    define('PEAR_CONFIG_DEFAULT_PREFERRED_STATE', getenv('PHP_PEAR_PREFERRED_STATE'));} else {    define('PEAR_CONFIG_DEFAULT_PREFERRED_STATE', 'stable');}// Default for umaskif (getenv('PHP_PEAR_UMASK')) {    define('PEAR_CONFIG_DEFAULT_UMASK', getenv('PHP_PEAR_UMASK'));} else {    define('PEAR_CONFIG_DEFAULT_UMASK', decoct(umask()));}// Default for cache_ttlif (getenv('PHP_PEAR_CACHE_TTL')) {    define('PEAR_CONFIG_DEFAULT_CACHE_TTL', getenv('PHP_PEAR_CACHE_TTL'));} else {    define('PEAR_CONFIG_DEFAULT_CACHE_TTL', 3600);}// Default for sig_typeif (getenv('PHP_PEAR_SIG_TYPE')) {    define('PEAR_CONFIG_DEFAULT_SIG_TYPE', getenv('PHP_PEAR_SIG_TYPE'));} else {    define('PEAR_CONFIG_DEFAULT_SIG_TYPE', 'gpg');}// Default for sig_binif (getenv('PHP_PEAR_SIG_BIN')) {    define('PEAR_CONFIG_DEFAULT_SIG_BIN', getenv('PHP_PEAR_SIG_BIN'));} else {    define('PEAR_CONFIG_DEFAULT_SIG_BIN',           System::which(               'gpg', OS_WINDOWS ? 'c:\gnupg\gpg.exe' : '/usr/local/bin/gpg'));}// Default for sig_keydirif (getenv('PHP_PEAR_SIG_KEYDIR')) {    define('PEAR_CONFIG_DEFAULT_SIG_KEYDIR', getenv('PHP_PEAR_SIG_KEYDIR'));} else {    define('PEAR_CONFIG_DEFAULT_SIG_KEYDIR',           PEAR_CONFIG_SYSCONFDIR . DIRECTORY_SEPARATOR . 'pearkeys');}/** * This is a class for storing configuration data, keeping track of * which are system-defined, user-defined or defaulted. */class PEAR_Config extends PEAR{    // {{{ properties    /**     * Array of config files used.     *     * @var array layer => config file     */    var $files = array(        'system' => '',        'user' => '',        );    var $layers = array();    /**     * Configuration data, two-dimensional array where the first     * dimension is the config layer ('user', 'system' and 'default'),     * and the second dimension is keyname => value.     *     * The order in the first dimension is important!  Earlier     * layers will shadow later ones when a config value is     * requested (if a 'user' value exists, it will be returned first,     * then 'system' and finally 'default').     *     * @var array layer => array(keyname => value, ...)     */    var $configuration = array(        'user' => array(),        'system' => array(),        'default' => array(),        );    /**     * Information about the configuration data.  Stores the type,     * default value and a documentation string for each configuration     * value.     *     * @var array layer => array(infotype => value, ...)     */    var $configuration_info = array(        // Internet Access        'master_server' => array(            'type' => 'string',            'default' => 'pear.php.net',            'doc' => 'name of the main PEAR server',            'prompt' => 'PEAR server',            'group' => 'Internet Access',            ),        'http_proxy' => array(            'type' => 'string',            'default' => PEAR_CONFIG_DEFAULT_HTTP_PROXY,            'doc' => 'HTTP proxy (host:port) to use when downloading packages',            'prompt' => 'HTTP Proxy Server Address',            'group' => 'Internet Access',            ),        // File Locations        'php_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_PHP_DIR,            'doc' => 'directory where .php files are installed',            'prompt' => 'PEAR directory',            'group' => 'File Locations',            ),        'ext_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_EXT_DIR,            'doc' => 'directory where loadable extensions are installed',            'prompt' => 'PHP extension directory',            'group' => 'File Locations',            ),        'doc_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_DOC_DIR,            'doc' => 'directory where documentation is installed',            'prompt' => 'PEAR documentation directory',            'group' => 'File Locations',            ),        'bin_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_BIN_DIR,            'doc' => 'directory where executables are installed',            'prompt' => 'PEAR executables directory',            'group' => 'File Locations',            ),        'data_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_DATA_DIR,            'doc' => 'directory where data files are installed',            'prompt' => 'PEAR data directory',            'group' => 'File Locations (Advanced)',            ),        'test_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_TEST_DIR,            'doc' => 'directory where regression tests are installed',            'prompt' => 'PEAR test directory',            'group' => 'File Locations (Advanced)',            ),        'cache_dir' => array(            'type' => 'directory',            'default' => PEAR_CONFIG_DEFAULT_CACHE_DIR,            'doc' => 'directory which is used for XMLRPC cache',            'prompt' => 'PEAR Installer cache directory',            'group' => 'File Locations (Advanced)',            ),        'php_bin' => array(            'type' => 'file',            'default' => PEAR_CONFIG_DEFAULT_PHP_BIN,            'doc' => 'PHP CLI/CGI binary for executing scripts',            'prompt' => 'PHP CLI/CGI binary',            'group' => 'File Locations (Advanced)',            ),        // Maintainers        'username' => array(            'type' => 'string',            'default' => '',            'doc' => '(maintainers) your PEAR account name',            'prompt' => 'PEAR username (for maintainers)',            'group' => 'Maintainers',            ),        'password' => array(            'type' => 'password',            'default' => '',            'doc' => '(maintainers) your PEAR account password',            'prompt' => 'PEAR password (for maintainers)',            'group' => 'Maintainers',            ),        // Advanced        'verbose' => array(            'type' => 'integer',            'default' => PEAR_CONFIG_DEFAULT_VERBOSE,            'doc' => 'verbosity level0: really quiet1: somewhat quiet2: verbose3: debug',            'prompt' => 'Debug Log Level',            'group' => 'Advanced',            ),        'preferred_state' => array(            'type' => 'set',            'default' => PEAR_CONFIG_DEFAULT_PREFERRED_STATE,            'doc' => 'the installer will prefer releases with this state when installing packages without a version or state specified',            'valid_set' => array(                'stable', 'beta', 'alpha', 'devel', 'snapshot'),            'prompt' => 'Preferred Package State',            'group' => 'Advanced',            ),        'umask' => array(            'type' => 'mask',            'default' => PEAR_CONFIG_DEFAULT_UMASK,            'doc' => 'umask used when creating files (Unix-like systems only)',            'prompt' => 'Unix file mask',            'group' => 'Advanced',            ),        'cache_ttl' => array(            'type' => 'integer',            'default' => PEAR_CONFIG_DEFAULT_CACHE_TTL,            'doc' => 'amount of secs where the local cache is used and not updated',            'prompt' => 'Cache TimeToLive',            'group' => 'Advanced',            ),        'sig_type' => array(            'type' => 'set',            'default' => PEAR_CONFIG_DEFAULT_SIG_TYPE,            'doc' => 'which package signature mechanism to use',            'valid_set' => array('gpg'),            'prompt' => 'Package Signature Type',            'group' => 'Maintainers',            ),        'sig_bin' => array(            'type' => 'string',            'default' => PEAR_CONFIG_DEFAULT_SIG_BIN,            'doc' => 'which package signature mechanism to use',            'prompt' => 'Signature Handling Program',            'group' => 'Maintainers',            ),        'sig_keyid' => array(            'type' => 'string',            'default' => '',            'doc' => 'which key to use for signing with',            'prompt' => 'Signature Key Id',            'group' => 'Maintainers',            ),        'sig_keydir' => array(            'type' => 'string',            'default' => PEAR_CONFIG_DEFAULT_SIG_KEYDIR,            'doc' => 'which package signature mechanism to use',            'prompt' => 'Signature Key Directory',            'group' => 'Maintainers',            ),        );

⌨️ 快捷键说明

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