摘要:
无限极分类的展示: 1.要建立数据库表CREATE TABLE `menu` (`id` int( 11) NOT NULL AUTO_INCREMENT COMMENT 'id', `sort_id` int... 阅读全文
摘要:
要增加 UNIQUE 的話 ALTER TABLE `你的表` ADD UNIQUE (`f_date`) 要刪除的話ALTER TABLE `你的表 ` DROP INDEX `f_date`要添加外键约束A... 阅读全文
摘要:
1.修改layouts/main.php文件 #code ... #code ... ... 阅读全文
摘要:
根据sql查询$sql ="select * from test where id = 1" ;Test ::findBySql ($sql) ->all(); 根据sql查询,防止sql注入$sql ="sel... 阅读全文
摘要:
不带参数跳转到views/index.phpreturn $this ->renderPartial( 'index.php'); 带参数跳转到 views/index.php$hello ='hello wor... 阅读全文
摘要:
$hello中的 js 代码不会执行,会原样输出Html ::encode( $hello);$hello中的 js 代码不会执行,不会输出\ yii\helpers \HtmlPurifier:: proces... 阅读全文
摘要:
数据块调用blocks[ 'block1']?> 数据块写法beginBlock( 'block1'); ?>indexendBlock ('block1'); ?> 检测数据块是否定义blocks [ 'blo... 阅读全文
摘要:
$cookies =Yii:: $app->response ->cookies;向cookies中添加数据$cookie_data =array( 'name'=>'user' ,'value'=> '张三' ... 阅读全文