欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php用户登录面向对象类

程序员文章站 2022-05-11 19:05:05
...
登录类 用语开发过程中的方便性 类直接体现出来了 ,如果可以 我们可以建自己的一个类库 方便的时候 直接拿来用 提供编程效率

<?php
class chk{
private $name;
private $pwd;
public function __construct($x,$y){
$this->name=$x;
$this->pwd = $y;

}
public function 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.php.cn)!