首頁 > 後端開發 > php教程 > 下面有两段代码为什么执行结果不一样,帮解释,谢谢

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

WBOY
發布: 2016-06-23 14:38:37
原創
959 人瀏覽過

 $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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板