> 백엔드 개발 > PHP 튜토리얼 > 下面有两段代码为什么执行结果不一样,帮解释,谢谢

下面有两段代码为什么执行结果不一样,帮解释,谢谢

WBOY
풀어 주다: 2016-06-23 14:38:37
원래의
958명이 탐색했습니다.

 $userName="root";
 $userPwd="1234";
  $dbName="test";
 $serverName="localhost";
//连接数据库
 $conn=mysql_connect("localhost","root","1234");
//选择数据库
$select=mysql_select_db("test",$conn);
if($select){
echo"数据库连接成功";
}
?>
和下面的代码执行结果不同,请分析下         $userName="root";
 $userPwd="1234";
  $dbName="test";
 $serverName="localhost";

    //连接数据库
    $this->conn=mysql_connect($this->serverName,$this->userName,$this->userPwd);
//选择数据库
$this->my_db=mysql_select_db($this->dbName,$this->conn);
     if($this->my_db){
echo"数据库连接成功";
               }
?>


回复讨论(解决方案)

$this->

你的在一个类中,这个类完整的代码呢?

$this->serverName

是类中的属性么?有设置么

如果你确定已贴出所有代码,建议看下PHP class。

关键是有什么不同?

class login
{
   private $userName="root";
private $userPwd="1234";
private $dbName="test";
private $serverName="localhost";
  
   function __construct()
{
//连接数据库
   $this->conn=mysql_connect($this->serverName,$this->userName,$this->userPwd);
//选择数据库
$this->my_db=mysql_select_db($this->dbName,$this->conn);
mysql_query("set names gb2312"); //设置编码格式
                 if($this->my_db){
                    echo"数据库连接成功";
                 }

}
?>
如果连接成功,会显示“数据库连接成功”,可结果为什么不对那,说程序错误,请修改谢谢

class login
{
   private $userName="root";
private $userPwd="1234";
private $dbName="test";
private $serverName="localhost";
  
   function __construct()
{
//连接数据库
   $this->conn=mysql_connect($this->serverName,$this->userName,$this->userPwd);
//选择数据库
$this->my_db=mysql_select_db($this->dbName,$this->conn);
mysql_query("set names gb2312"); //设置编码格式
                 if($this->my_db){
                    echo"数据库连接成功";
                 }

}
?>
如果连接成功,会显示“数据库连接成功”,可结果为什么不对那,说程序错误,请修改谢谢
报什么错?

程序按你给出的代码
类 login 的定义未结束,单独执行会报错
Parse error: syntax error, unexpected end of file

那帮我修改下,让它输出“数据库连接成功”的字样啊,谢谢啊

在 ?> 前加入

}new login;
로그인 후 복사

哎哟,测试下不行啊,测试后什么都没有。你再测试下,好吧。谢谢

非常好,成功了,我刚才弄错了,谢谢啊

版主 真认真啊 很好啊 

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿