Heim >Backend-Entwicklung >PHP-Tutorial >下面有两段代码为什么执行结果不一样,帮解释,谢谢

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

WBOY
WBOYOriginal
2016-06-23 14:38:37953Durchsuche

 $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;

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

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

版主 真认真啊 很好啊 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn