接下来阅读BaseYii.php
vendor/yiisoft/yii2/BaseYii.php——
namespace yii; use yii\base\InvalidConfigException; use yii\base\InvalidParamException; use yii\base\UnknownClassException; use yii\log\Logger; use yii\di\Container;
第1行定义命名空间为yii;
第3到7行使用了命名空间;
/** * Gets the application start timestamp. */ defined('YII_BEGIN_TIME') or define('YII_BEGIN_TIME', microtime(true)); /** * This constant defines the framework installation directory. */ defined('YII2_PATH') or define('YII2_PATH', __DIR__); /** * This constant defines whether the application should be in debug mode or not. Defaults to false. */ defined('YII_DEBUG') or define('YII_DEBUG', false); /** * This constant defines in which environment the application is running. Defaults to 'prod', meaning production environment. * You may define this constant in the bootstrap script. The value could be 'prod' (production), 'dev' (development), 'test', 'staging', etc. */ defined('YII_ENV') or define('YII_ENV', 'prod'); /** * Whether the the application is running in production environment */ defined('YII_ENV_PROD') or define('YII_ENV_PROD', YII_ENV === 'prod'); /** * Whether the the application is running in development environment */ defined('YII_ENV_DEV') or define('YII_ENV_DEV', YII_ENV === 'dev'); /** * Whether the the application is running in testing environment */ defined('YII_ENV_TEST') or define('YII_ENV_TEST', YII_ENV === 'test'); /** * This constant defines whether error handling should be enabled. Defaults to true. */ defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER', true);
接下来依次定义了启动时间、yii文件路径、是否启动调试、环境、产品环境、开发环境、测试环境、错误处理常量;
class BaseYii {
声明BaseYii类,该类没有父类;
public static $classMap = []; public static $app; public static $aliases = ['@yii' => __DIR__]; public static $container;
定义了四个静态属性:
public static $classMap = [];用赋值为空数组的方式声明;根据注解理解该属性被用于Yii的自动加载机制(used by the Yii autoloading mechanism),键名为类名称,键值为对应的路径或者路径别名
public static $app; 该属性为应用实例;
public static $aliases = ['@yii' => __DIR__]; 该属性为路径别名;
public static $container; 该属性为依赖注入容器;
获取版本号方法:
public static function getVersion() { return '2.0.7'; }
接下来的方法是通过路径别名获取路径,想知道如何获取路径,首先需要知道如何设置路径别名,所以先阅读设置路径别名的方法:
public static function setAlias($alias, $path) { if (strncmp($alias, '@', 1)) { //判断别名是否以@开始,如果不是,则添加@开头 $alias = '@' . $alias; } //通过/的位置获取根别名,如果别名中没有/,则别名就是根别名,否则截取/前面的作为根别名 $pos = strpos($alias, '/'); $root = $pos === false ? $alias : substr($alias, 0, $pos); if ($path !== null) { //通过三元运算符判断路径中是否包含别名,如果包含,调用getAlias解析别名,否则去掉路径右边的斜线 到这里才知道为什么getAlias方法会在前面了 //strncmp 用来比较两个字符串的指定长度,相等返回0 $path = strncmp($path, '@', 1) ? rtrim($path, '\\/') : static::getAlias($path); if (!isset(static::$aliases[$root])) {//如果还没有设置过这个根别名 if ($pos === false) { static::$aliases[$root] = $path;//在别名数组中添加该根别名,键名为根别名,值为对应的路径 } else { static::$aliases[$root] = [$alias => $path];//否则,路径为对应的一个数组 } } elseif (is_string(static::$aliases[$root])) {//如果注册过根别名,即根别名对应的值为字符串 if ($pos === false) { static::$aliases[$root] = $path;//当前注册的是根别名,则覆盖原来的值 } else {//否则,把当前的别名和根别名添加到数组中 static::$aliases[$root] = [ $alias => $path, $root => static::$aliases[$root], ]; } } else {//添加别名到根别名数组 static::$aliases[$root][$alias] = $path; krsort(static::$aliases[$root]);//按照键名降序排序 } } elseif (isset(static::$aliases[$root])) { //如果是根别名数组,删除子别名,机制类似于TP中的缓存方法和配置方法 if (is_array(static::$aliases[$root])) { unset(static::$aliases[$root][$alias]); } elseif ($pos === false) { //删除整个根别名数组 unset(static::$aliases[$root]); } } }
通过别名获取路径的方法:
if (strncmp($alias, '@', 1)) { //判断$alias中的第一个字符是否为@,如果不是@,则传入的参数不是别名,不做处理返回参数本身; return $alias; } //通过/获取根别名 $pos = strpos($alias, '/'); $root = $pos === false ? $alias : substr($alias, 0, $pos); if (isset(static::$aliases[$root])//判断别名常量中是否存在该别名) { if (is_string(static::$aliases[$root]//判断根别名的值是否为字符串,如果是字符串,表示只设置了一个根别名)) { //通过三元运算符判断如果取得别名是根别名,直接返回根别名路径,否则返回根别名+去掉根别名的路径 return $pos === false ? static::$aliases[$root] : static::$aliases[$root] . substr($alias, $pos); } else { //如果根别名的值不是字符串,表示设置了子别名,遍历子别名 foreach (static::$aliases[$root] as $name => $path) { if (strpos($alias . '/', $name . '/') === 0) { return $path . substr($alias, strlen($name)); } } } } //如果输入的别名有异常,返回false if ($throwException) { throw new InvalidParamException("Invalid path alias: $alias"); } else { return false; } }
写到一半的时候才发现可以用注释的方式,瞬间觉得自己好low啊(●'◡'●)!!