개발 과정에서 로그인 클래스의 편의성이 직접적으로 반영됩니다. 가능하다면 자체 클래스 라이브러리를 구축하여 편리할 때 직접 사용하여 프로그래밍 효율성을 제공할 수 있습니다.
class chk{
비공개 $name;
비공개 $pwd;
공용 함수 __construct($x,$y){
$this->name=$x;
$this - >pwd = $y;
}
공용 함수 chkuer(){
include 'conn/conn.php';
$rs = new com("adobd.recordset" ) ;
$rs ->open("select * from tb_user where username = ".$this->name."and userpwd = ".$this->pwd."",$conn,3, 1 );
if ($rs->eof||$rs->bof){
echo "cuowu";
}else {
echo "dengluchenggong";
}
}
}
?>
위 내용은 PHP 사용자 로그인의 객체지향 내용이며, 더 많은 관련 내용은 PHP 중국어 홈페이지(www.kr)를 참고하시기 바랍니다. .php.cn) !