######## 错误捕获,并写入文件 ####################
// try {
// 10/0;
// } catch (ErrorException $e) {
// Yii::warning("除数不能为0");
// }
######## 辅助类 ####################
// echo '
'.Url::to(['site/index', 'src' => 'ref1', '#' => 'name']);
// echo '
'.Url::home();
// 绝对路由,不管是被哪个控制器调用
// /index.php?r=site/index
// echo Url::toRoute(['/site/index','ssss'=>'ddddddddddd']);
// 从别名中获取 URL
// http://google.com/
// Yii::setAlias('@google', 'http://google.com/');
// echo Url::to('@google');
// 获取当前页的标准 URL
// /index.php?r=management/default/users
// echo Url::canonical();
//
// 获得 home 主页的 URL
// /index.php?r=site/index
// echo Url::home();
//
// Url::remember() ; // 保存URL以供下次使用
// Url::previous(); // 取出前面保存的 URL
// echo '
'.Yii::$app->urlManager->createUrl(['site/page', 'id' => 'about']);
// echo '
'.Yii::$app->urlManager->createAbsoluteUrl('blog/post/index/sdf/sdfs/dsfsdf/');
// exit;
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。