当前位置: 首页>>代码示例>>PHP>>正文


PHP AutoLoader::instance方法代码示例

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


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

示例1: getInstance

 /**
  *   Singleton - bekomme die laufen instanz vom objekt
  */
 public static function getInstance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }
开发者ID:pixelproduction,项目名称:PixelManagerCMS,代码行数:10,代码来源:AutoLoader.php

示例2: createInstance

 public static function createInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new AutoLoader();
     }
     return self::$instance;
 }
开发者ID:vampirefrog,项目名称:frogmod-justice,代码行数:7,代码来源:AutoLoader.php

示例3: getInstance

 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new AutoLoader();
     }
     return self::$instance;
 }
开发者ID:sigmadesarrollo,项目名称:logisoft,代码行数:7,代码来源:AutoLoader.php

示例4: instance

 /**
  * Returns the instance of the AutoLoader Singleton or instantiates a new one
  * @return AutoLoader
  */
 public static function instance($rootDirectory = null, $reloadClassMap = true, $fileExt = null)
 {
     if (self::$instance == null) {
         self::$instance = new AutoLoader($rootDirectory, $reloadClassMap, $fileExt);
     }
     return self::$instance;
 }
开发者ID:h1ppo,项目名称:Class-Map-Autoloader-for-PHP,代码行数:11,代码来源:AutoLoader.php

示例5: testExpireCache

 public function testExpireCache()
 {
     $cache = file_get_contents(AutoLoader::instance()->getCacheLocation());
     $this->assertGreaterThan(0, strlen($cache));
     AutoLoader::instance()->expireCache();
     try {
         if (!($cache = file_get_contents(AutoLoader::instance()->getCacheLocation()))) {
             $this->assertTrue(true);
         } else {
             $this->assertTrue(false);
         }
     } catch (Exception $ex) {
         $this->assertTrue(true);
     }
 }
开发者ID:h1ppo,项目名称:Class-Map-Autoloader-for-PHP,代码行数:15,代码来源:AutoLoaderTest.php

示例6: die

<?php

/**
 * Rebuilds the class mapping cache file for the auto_loader
 * This can be done at run time but is real slow for big projects
 * and definately doesn't want to be run in production so this
 * should be run as part of deployment
 * @example php ./rebuild_class_map.php
 * @author Jason Paige
 */
if (php_sapi_name() != 'cli') {
    die("This script can only be run on the command line.");
}
define("ROOT_PATH", __DIR__ . DIRECTORY_SEPARATOR . "..");
require_once ROOT_PATH . "/AutoLoader.php";
$autoLoader = AutoLoader::instance(ROOT_PATH, true);
$autoLoader->expireCache();
$autoLoader->ignore(ROOT_PATH . "ignore_folder")->ignore(ROOT_PATH . "ignore_folder2");
$autoLoader->init();
// correct the generated file paths
$classMap = file_get_contents($autoLoader->getCacheLocation());
if (!file_put_contents($autoLoader->getCacheLocation(), $classMap)) {
    echo "Unable to write class map cache!";
    exit(1);
} else {
    echo "New class map cache generated at " . $autoLoader->getCacheLocation() . "\n";
    exit;
}
开发者ID:h1ppo,项目名称:Class-Map-Autoloader-for-PHP,代码行数:28,代码来源:rebuild-class-map-cache.php


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