本文整理汇总了PHP中GV::Anything方法的典型用法代码示例。如果您正苦于以下问题:PHP GV::Anything方法的具体用法?PHP GV::Anything怎么用?PHP GV::Anything使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GV
的用法示例。
在下文中一共展示了GV::Anything方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$pass=false;
$board = Board::Inst()->bo_no($this->bo_no);
$data = $this->Sql('fetch', $att[1]); // 기존 게시글 정보
if(is_array($data) && sizeof($data)!=0) {
// 게시판 설정보다 회원 레벨이 높거나 같다면
if($this->Config('mb','level') >= intval($board->bo_level_modify)) {
// 회원이 쓴 글이면 회원 자신만 수정가능함
if($data['mb_no']!=0) {
if($data['mb_no'] == $this->Config('mb','no'))
$pass = true;
}
// 비회원이 쓴 글이면 비밀번호 검사
else {
if(GV::Anything('password')!='') {
if($data['wr_password'] == $this->Sql('password', GV::Anything('password')))
$pass = true;
else
$pass = 'incorrect';
} else {
$pass = 'password';
}
}
// 수정불가 댓글수 등 체크
//if(!$board->bo_mod_comment) $mod_comment=9999;
//else $mod_comment=$board->bo_mod_comment;
//if($mod_comment<=intVal($this->model->CountComment($data['wr_no'])))
// $pass = false;
}