本文整理汇总了PHP中CoreLocal::setHandler方法的典型用法代码示例。如果您正苦于以下问题:PHP CoreLocal::setHandler方法的具体用法?PHP CoreLocal::setHandler怎么用?PHP CoreLocal::setHandler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CoreLocal
的用法示例。
在下文中一共展示了CoreLocal::setHandler方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: realpath
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*********************************************************************************/
/**
@file
@brief This file specifies the LocalStorage implemenation
Include this file to get a LocalStorage instance
in the variable $CORE_LOCAL.
*/
$elog = realpath(dirname(__FILE__) . '/../../log/') . '/php-errors.log';
ini_set('error_log', $elog);
ini_set('display_errors', false);
$LOCAL_STORAGE_MECHANISM = 'SessionStorage';
if (!class_exists($LOCAL_STORAGE_MECHANISM)) {
include realpath(dirname(__FILE__) . '/' . $LOCAL_STORAGE_MECHANISM . ".php");
}
if (!class_exists('CoreLocal')) {
include dirname(__FILE__) . '/CoreLocal.php';
}
if (!class_exists('WrappedStorage')) {
include dirname(__FILE__) . '/WrappedStorage.php';
}
CoreLocal::setHandler($LOCAL_STORAGE_MECHANISM);
$CORE_LOCAL = new WrappedStorage();
global $CORE_LOCAL;
// this includes ini.php
CoreLocal::refresh();
if (!defined('CONF_LOADED')) {
define('CONF_LOADED', true);
}