extensions.config.php

来自「Ajax最流行书籍」· PHP 代码 · 共 50 行

PHP
50
字号
<?php/** * XOAD Extensions Configuration file. * * This file contains the list of the installed * extensions. * * @author	Stanimir Angeloff * * @package	XOAD * * @version	0.6.0.0 * */$xoadExtensions = array();// $xoadExtensions[] = 'html';// $xoadExtensions[] = 'cache';// $xoadExtensions[] = 'controls';if ( ! defined('XOAD_CACHE_STORAGE_DSN')) {	/**	 * Defines the data source name and parameters to use	 * when cache data is saved.	 *	 * <p>DSN Examples:</p>	 * <code>	 * Files://c:\Cache	 * MySQL://server=?;user=?;password=?;database=?;[port=?]	 * </code>	 *	 */	define('XOAD_CACHE_STORAGE_DSN', 'Files');}if ( ! defined('XOAD_CACHE_LIFETIME')) {	/**	 * Defines the default lifetime for the cache data.	 *	 * <p>The default value is 30 minutes. Keep in mind	 * that you should use lower values for frequently	 * updated data.</p>	 */	define('XOAD_CACHE_LIFETIME', 60 * 30);}?>

⌨️ 快捷键说明

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