本文实例讲述了CakePHP框架Model函数定义方法。分享给大家供大家参考,具体如下:
在CakePHP中,MVC的架构是清晰的,而在实际做项目中,我发现仍然有很多人喜欢在Controller中堆砌函数,这样做也未尝不可,但是,作为一个百万行级的大项目来说,这种违背MVC思想的做法虽然可能暂时给程序结构带来便利,但从长远来看,是万万不可取的!
我们应该将系统常用到的某些函数定义在Model中,特别是纯粹的的数据处理函数和数据查询函数:
譬如,在Blog中像下面这样的条件查询:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
*
* Blog 根据条件得到相应字段结果集
*
* @Param array conditions
* array fields
* @Return array
*
*/
function getBlogsByCon( $conditions = array (), $fields = null){
return $this ->find( 'all' , array (
'conditions' =>ife( count ( $conditions ) > 0, am( array ( '`Blog`.`status` = 1' ), $conditions ), array ( '`Blog`.`status` = 1' )),
'fields' => $fields ,
'order' => '`Blog`.`created` DESC' ,
'page' =>1,
'recursive' =>0));
}
|
希望本文所述对大家PHP程序设计有所帮助。