dongtao6842 2013-08-05 03:19
浏览 65
已采纳

在构造函数PHP上执行函数

i have class called dbconnection. I want to call this connection function in the constructor. Usually in Java, i just declare:

private FileName variable = new Filename(); 

and assign the variable.logOn on any functions.

But now, in authenticate php class, i couldn't do that. So i think i can execute the connection in constructor, I've tried:

public function __construct(){
  $conn = new Database();
}

but i couldn't access the $conn var because it's not global variable.

Another method i use is placing below code outside any function.

 public $conn  = new Database();

but it shows an error.

How properly calling the variable or executing another function from another class in php?

thanks.

  • 写回答

2条回答 默认 最新

  • douren8379 2013-08-05 03:24
    关注

    You need to make $conn a field, and $this->conn to initialize it:

    public $conn;  // declare $conn field
    
    public function __construct () {
        $this->conn = new Database();  // initialize field
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?