本文整理汇总了PHP中ProjectConfiguration::zendLoaded方法的典型用法代码示例。如果您正苦于以下问题:PHP ProjectConfiguration::zendLoaded方法的具体用法?PHP ProjectConfiguration::zendLoaded怎么用?PHP ProjectConfiguration::zendLoaded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProjectConfiguration
的用法示例。
在下文中一共展示了ProjectConfiguration::zendLoaded方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: registerZend
public static function registerZend()
{
if (self::$zendLoaded) {
return;
}
set_include_path(sfConfig::get('sf_lib_dir') . '/vendor/' . PATH_SEPARATOR . get_include_path());
require_once sfConfig::get('sf_lib_dir') . '/vendor/Zend/Loader.php';
self::$zendLoaded = true;
}
示例2: registerZend
public static function registerZend()
{
if (self::$zendLoaded) {
return;
}
set_include_path(sfConfig::get('app_zend_lib_dir') . PATH_SEPARATOR . get_include_path());
require_once sfConfig::get('app_zend_lib_dir') . '/Zend/Loader.php';
Zend_Loader::registerAutoload();
self::$zendLoaded = true;
}
示例3: registerZend
public static function registerZend()
{
if (self::$zendLoaded) {
return;
}
set_include_path(sfConfig::get('sf_lib_dir') . '/vendor' . PATH_SEPARATOR . get_include_path());
require_once sfConfig::get('sf_lib_dir') . '/vendor/Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();
self::$zendLoaded = true;
Zend_Search_Lucene_Analysis_Analyzer::setDefault(new Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8_CaseInsensitive());
}