随笔分类 - yii
摘要:挂件PHP文件class CountryCityCombox extends RXWidget { public $provinceId = 2; public $cityId = 3687; public $regionId = 64; public $level = 3; //限定联动层级 为2说明是2级联动 public function init() { $this->provinceId = intval ( $this->provinceId ); $this->cityId = intval ( $this->cityId ); $this->reg
阅读全文
摘要:$cri = new CDBcriteria(); $cri->addCondition( ' hid = '.$hid.' ' ); $cri->select = 'id,property'; $costMoney = Cost::model()->find($cri);这种方法是查找出指定的字段的值,但是由于是对象,所以其他字段值都被补成空!无法达到要求要下面的方法 $sql = " select ".$fields." from ysh_cost where hid ...
阅读全文