-
路径后面要加“/”
查看全部 -
四种URL模式
0.普通模式http://localhost/php/test1/index.php?m=Index&a=user&id=1
1.PATHINFO模式 http://localhost/php/test1/index.php/Index/user/id/1.html
2.重写模式 http://localhost/test1/Index/index/id/1.html
3.兼容模式 http://localhost/test1/index.php?s=/Index/index/id/1.html
建议使用PATHINFO模式
U方法
echo U('模块/方法 例Index/user',array('id'=>1),'后缀名 例xml',是否直接跳转false,子域名'localhost');
.$_GET['id'].获取id的值
查看全部 -
1、大写的C方法就是config缩写 C('name');
2、开启dubug define('APP_DEBUG',TRUE);在项目上线后关闭,并删除runtime文件夹
3、加载自定义配置文件user.php,就是在conf文件夹的config.php里面引入’LOAD_EXT_CONFIG‘=>’user‘,并且自定义配置文件不是被项目定义,每次都会加载,建议不要自定义配置文件
4. 运行是在lib/action里面
查看全部 -
框架
查看全部 -
MVC模式
查看全部 -
mvc
查看全部 -
用wiznote来做笔记,时刻记录的习惯要保持下去。
查看全部 -
desc 降序排列 asc 升序排列
查看全部 -
混合用法
$where['id']=aaray('gt',10);
$where['_string']='score>10';
查看全部 -
$where['id']=array(array('gt',10),array('lt',3));默认是且的关系
$where['id']=array(array('gt',10),array('lt',3),'or');后面加个or就改成或的关系
查看全部 -
distinct() 过滤掉重复的字段内容 distinct(true)
查看全部 -
group() 把字段弄成一组!
查看全部 -
having() 限制
查看全部 -
取出一部分字段的 可以用 field() 方法
查看全部 -
变量名 = array(
1=>array(
);
2=>array(
);
)
查看全部
举报