*/
public function __call($name, $params)
{
$this->ensureBehaviors();
foreach ($this->_behaviors as $object) {
if ($object->hasMethod($name)) {
return call_user_func_array([$object, $name], $params);
}
}
throw new UnknownMethodException('Calling unknown method: ' . get_class($this) . "::$name()");
}
/**
* This method is called after the object is created by cloning an existing one.
* It removes all behaviors because they are attached to the old object.
*/
public function __clone()
{
$this->_events = [];
public function actionPre($id)
{
$id = intval($id);
$newsModel = News::find()->where(['<','id',$id])->one();
if(!$newsModel){
$this->error("没有上一条了");
die;
}
return $this->render('page', [
'newsModel' => $newsModel,
]);
}
public function actionPre($id)
{
$id = intval($id);
$newsModel = News::find()->where(['<','id',$id])->one();
if(!$newsModel){
$this->error("没有上一条了");
die;
}
return $this->render('page', [
'newsModel' => $newsModel,
]);
}
$args = $this->controller->bindActionParams($this, $params);
Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__);
if (Yii::$app->requestedParams === null) {
Yii::$app->requestedParams = $args;
}
return call_user_func_array([$this->controller, $this->actionMethod], $args);
}
}
}
$result = null;
if ($runAction && $this->beforeAction($action)) {
// run the action
$result = $action->runWithParams($params);
$result = $this->afterAction($action, $result);
// call afterAction on modules
foreach ($modules as $module) {
/* @var $module Module */
$parts = $this->createController($route);
if (is_array($parts)) {
/* @var $controller Controller */
list($controller, $actionID) = $parts;
$oldController = Yii::$app->controller;
Yii::$app->controller = $controller;
$result = $controller->runAction($actionID, $params);
if ($oldController !== null) {
Yii::$app->controller = $oldController;
}
return $result;
}
$params = $this->catchAll;
unset($params[0]);
}
try {
Yii::debug("Route requested: '$route'", __METHOD__);
$this->requestedRoute = $route;
$result = $this->runAction($route, $params);
if ($result instanceof Response) {
return $result;
}
$response = $this->getResponse();
if ($result !== null) {
{
try {
$this->state = self::STATE_BEFORE_REQUEST;
$this->trigger(self::EVENT_BEFORE_REQUEST);
$this->state = self::STATE_HANDLING_REQUEST;
$response = $this->handleRequest($this->getRequest());
$this->state = self::STATE_AFTER_REQUEST;
$this->trigger(self::EVENT_AFTER_REQUEST);
$this->state = self::STATE_SENDING_RESPONSE;
$response->send();
require(__DIR__ . '/../config/main.php'),
require(__DIR__ . '/../config/main-'.$mode.'.php')
);
$application = new yii\web\Application($config);
$application->run();
$_GET = [
'id' => '2',
];
$_COOKIE = [
'_csrf' => '2bb2f62ce4f710b4b5faf42d4ddb55f7d76518e4cf77df4320667feb3e3ba32fa:2:{i:0;s:5:"_csrf";i:1;s:32:"Puzduke1Ox7cI7fwO3-2_uf70PJ9eX7-";}',
];