• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Smarty_Autoloader类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Smarty_Autoloader的典型用法代码示例。如果您正苦于以下问题:PHP Smarty_Autoloader类的具体用法?PHP Smarty_Autoloader怎么用?PHP Smarty_Autoloader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Smarty_Autoloader类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: register

 /**
  * Registers Smarty_Autoloader as an SPL autoloader.
  *
  * @param bool $prepend Whether to prepend the autoloader or not.
  */
 public static function register($prepend = false)
 {
     self::$SMARTY_DIR = defined('SMARTY_DIR') ? SMARTY_DIR : dirname(__FILE__) . DIRECTORY_SEPARATOR;
     self::$SMARTY_SYSPLUGINS_DIR = defined('SMARTY_SYSPLUGINS_DIR') ? SMARTY_SYSPLUGINS_DIR : self::$SMARTY_DIR . 'sysplugins' . DIRECTORY_SEPARATOR;
     if (version_compare(phpversion(), '5.3.0', '>=')) {
         spl_autoload_register(array(__CLASS__, 'autoload'), true, $prepend);
     } else {
         spl_autoload_register(array(__CLASS__, 'autoload'));
     }
 }
开发者ID:songdent,项目名称:pandaphp,代码行数:15,代码来源:Autoloader.php


示例2: register

 /**
  * Registers Smarty_Autoloader as an SPL autoloader.
  * @param bool $prepend Whether to prepend the autoloader or not.
  */
 public static function register($prepend = FALSE)
 {
     self::$SMARTY_DIR = defined('SMARTY_DIR') ? SMARTY_DIR : dirname(__FILE__) . '/';
     self::$SMARTY_SYSPLUGINS_DIR = defined('SMARTY_SYSPLUGINS_DIR') ? SMARTY_SYSPLUGINS_DIR : self::$SMARTY_DIR . 'sysplugins/';
     if (version_compare(phpversion(), '5.3.0', '>=')) {
         spl_autoload_register([__CLASS__, 'autoload'], TRUE, $prepend);
     } else {
         spl_autoload_register([__CLASS__, 'autoload']);
     }
 }
开发者ID:rendix2,项目名称:QW_MVS,代码行数:14,代码来源:Autoloader.php


示例3: define

}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
    /**
     * @deprecated in favor of Smarty::$_DATE_FORMAT
     */
    define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * Try loading the Smarty_Internal_Data class
 * If we fail we must load Smarty's autoloader.
 * Otherwise we may have a global autoloader like Composer
 */
if (!class_exists('Smarty_Autoloader', false)) {
    if (!class_exists('Smarty_Internal_Data', true)) {
        require_once 'Autoloader.php';
        Smarty_Autoloader::registerBC();
    }
}
/**
 * Load always needed external class files
 */
if (!class_exists('Smarty_Internal_Data', false)) {
    require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
}
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_variable.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_source.php';
/**
 * This is the main Smarty class
开发者ID:redaxle,项目名称:smarty,代码行数:31,代码来源:Smarty.class.php


示例4: define

}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
    /**
     * @deprecated in favor of Smarty::$_DATE_FORMAT
     */
    define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * Try loading the Smarty_Internal_Data class
 * If we fail we must load Smarty's autoloader.
 * Otherwise we may have a global autoloader like Composer
 */
if (!class_exists('Smarty_Autoloader', false)) {
    if (!class_exists('Smarty_Internal_Data', false)) {
        require_once dirname(__FILE__) . '/Autoloader.php';
        Smarty_Autoloader::registerBC(true);
    }
}
/**
 * Load always needed external class files
 */
if (!class_exists('Smarty_Internal_Data', false)) {
    require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
}
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_extension_handler.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_variable.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_source.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_resource_base.php';
开发者ID:songdent,项目名称:pandaphp,代码行数:31,代码来源:Smarty.class.php


示例5: registerSmarty

 public static function registerSmarty()
 {
     // Smarty autoloader
     require_once self::$libsPath . 'smarty/Autoloader.php';
     Smarty_Autoloader::register();
 }
开发者ID:highlands-framework,项目名称:highlands-framework,代码行数:6,代码来源:Autoloader.php


示例6: GetSmarty

function GetSmarty()
{
    require_once "{$rootpath}/thirdparty/smarty/libs/Autoloader.php";
    Smarty_Autoloader::register();
    $smarty = new Smarty();
    return $smarty;
}
开发者ID:jaredballou,项目名称:insurgency-tools-old,代码行数:7,代码来源:functions.php



注:本文中的Smarty_Autoloader类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Smarty_CacheResource类代码示例发布时间:2022-05-23
下一篇:
PHP SmartyWrap类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap