
yii框架
laxexue
这个作者很懒,什么都没留下…
展开
-
yii框架存放cookie
setcookie("url", $_GET['url'], time()+3600,'/');原创 2018-11-07 15:13:41 · 1600 阅读 · 0 评论 -
yii2中redirect 重定向传值
$this->redirect(['site/index','id'=>$id])原创 2018-11-07 14:29:31 · 3783 阅读 · 1 评论 -
yii2.0 url美化
在config文件的配置文件里面,添加 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false,//隐藏index.php //'enableStrictParsing' => false, ...原创 2018-04-18 16:22:47 · 209 阅读 · 0 评论 -
yii命名空间
在项目目录下创建test文件,创建namespace.php和namespaceB.php两个文件 内容均为 <?php class Apple{ function get_info(){ echo 'this is a'; } } 在创建index.php文件引入两个文件 <?php require_once('namespace.php'); require_...原创 2019-03-26 18:02:59 · 313 阅读 · 0 评论