处理请求 class TestController extends Controller { public function init() { if(!YII_ENV_DEV){ throw new ExitException(201,'can not access not in dev mode'); } } /** * */ public function actionClientip() { if(YII_ENV_DEV){ $request = Yii::$app->getRequest…
一.先谈几个重要的东西 virtual memory是一个抽象概念,书上的原文是"an abstraction of main memory known as virtual memory"(参考资料p776).那么什么是抽象概念.下面说说我个人对这个东西的理解. 所谓抽象概念是指抽象出来的概念,通过抽象这个动作得到的结果.那么抽象这个动作又是什么,即是怎么一个动作,思维做了什么动作或者做了一系列什么动作.举个生活中的例子,现在有排球.足球.篮球.乒乓球,我们按照某个方向(共性)对排球…
Download Yii is an open source project released under the terms of the BSD License. This means that you can use Yii for free to develop either open-source or proprietary Web applications. Currently there are two major versions of Yii: 2.0 and 1.1…
在使用yii的yii\db\Connnection时发生错误 <?php namespace app\controllers; use yii\web\Controller; use yii\db\Connection; use Yii; class MyController extends Controller { public function actionIndex() { $country = Yii::$app -> db -> createCommand("sele…
1.main.php增加导航栏严格区分大小写,否则会出现404错误 2.增加'分页'功能---前后台的models里面的search.php 添加 public function search($params) { $query = Study::find(); // add conditions that should always apply here $dataProvider = new ActiveDataProvider([ …