首页上一页 1 下一页尾页 3 条记录 1/1页
学习7天了,来个自测?
发表在新手报到
2017-12-20
是否精华
是
否
版块置顶:
是
否
public class Base{
public $userName;
public $pwd;
public function __construct($userName,$pwd)
{
$this->userName=$userName;
$this->pwd=$pwd;
}
public function login(){
if($this->userName==‘admin’ && $this->pwd==‘admin888’){
return $this->userName.“登录成功,进入管理主页。”
}
else{
return $this->userName.“不是管理员,进入登录页面。”
}
}
}
class index extends Base{
}
$melogin=new index(‘yaoming’,‘88888’);
echo $melogin->login();
?>
public $userName;
public $pwd;
public function __construct($userName,$pwd)
{
$this->userName=$userName;
$this->pwd=$pwd;
}
public function login(){
if($this->userName==‘admin’ && $this->pwd==‘admin888’){
return $this->userName.“登录成功,进入管理主页。”
}
else{
return $this->userName.“不是管理员,进入登录页面。”
}
}
}
class index extends Base{
}
$melogin=new index(‘yaoming’,‘88888’);
echo $melogin->login();
?>
于2017-12-20 01:13:44编辑