摘要:
/****字体倾斜***/.telta span{ color: #fff; font-weight: bold; position: absolute; margin-top: -5px; margin-left: -9px; -webkit-transfo... 阅读全文
摘要:
CONTROLLER_NAME 常量 当前访问的控制器 阅读全文
摘要:
strpos 中为什么要用逗号隔开的原因是因为 防止找出相匹配的中 , 如 查找1 而数组中 存在 12 那么这个结果也是可以找出来的 ,分别在1 前后加个, 就是为了区分。 $v){ if(strpos(','.$data['privilege_id'].',', ','... 阅读全文
摘要:
#自动验证 一般验证 #自动验证 protected $_validate=array( #函数验证 array('role_name','require','角色名称不能为空!'), array('privilege_id','require','拥有的权限不能... 阅读全文
摘要:
拥有的权限 添加权限单击lable 标签 checkbox 也被选中, 只要两个id 一直就可以 阅读全文
摘要:
// $id:1 $id:1,2,3,4,5 public function delete($id) { // 把1替换掉不允许删除ID为1的角色 在前面分别加了 , 号 防止跟他想匹配的, str_replace类似于like 查找。 $id = str_replace(',1,... 阅读全文
摘要:
unsigned 必须出在 not null 的前面,如果出现在这个后面就出错呢。 阅读全文
摘要:
$data=array(1,2,3,4,5);implode(",",$data); 阅读全文
摘要:
#直接用 __MODULE__/控制器名/方法名/参数名/参数 ">#列表public function list_table($goods_id){ echo $goods_id;die; #显示模板$this->display();}跳到自身控制器用 __SELF__ 阅读全文
摘要:
#str_pad 补位 $sn = 'SN'.str_pad($goods_id, 8, '0', STR_PAD_LEFT); $this->where('id='.$goods_id)->save(array( 'goods_sn'=>$sn, ))... 阅读全文