-
$request = \YII::$app->request(); echo $request->get('id',2); echo $request->post('name',2222); if($this->isGet){ echo "this is get method"; } if($this->isPost){ echo "this is post method"; }查看全部
-
require_once ("a.php"); require_once ("b.php"); require_once ("c.php"); use a\aa\Apple; use b\bb\Apple as Bapple; $a_app = new Apple(); //普通命令空间 $b_app = new Bapple(); //别名命令空间 $c_app = new \Apple(); //顶层命令空间 $a_app->get_info(); echo "<br/>"; $b_app->get_info(); echo "<br/>"; $c_app->get_info();查看全部
-
在\config\web.php 配置下 cookieValidationKey 的值。。。查看全部
-
应用组件:request、response、session查看全部
-
cookie 处理查看全部
-
session 处理查看全部
-
响应处理 文件下载查看全部
-
文件下载 设置浏览器缓存查看全部
-
session数据的创建、提取、删除查看全部
-
session开启和判断是否已经开启查看全部
-
文件下载查看全部
-
状态吗、各种设置、跳转查看全部
-
命名空间与thinkPHP命名空间的区别查看全部
-
yii应用静态结构图查看全部
-
关联查询结果缓存 unset($customer->orders) //关联查询的多次查询 $customers = Customer::find()->with('orders')->all() foreach($customers as $customer){ $orders = $customer->orders }查看全部
举报
0/150
提交
取消