<?php
namespace app\index\controller;
use think\Controller;
/**
Class Demo3
-
@package app\index\controller
*/
class Demo3 extends Controller
{
public function index()
{
//在重定向的时候增加一个参数直接写在url上
age' => 2]);
//可以在重定向的时候通过session闪存数据传值
$this->redirect('demo3/hello', ['age' => 18], 302, ['name' => 'lzq']);}
public function hello(res = \think\Facade\Request::session('name');
return 'hello ' . age . '岁';
}
}