我有两个 php 文件。第一个是针对库的,另一个是针对函数的,问题是如果我在类之外声明变量,那么我会收到一个错误,说是未识别的变量。需要帮助提前谢谢。
库文件
class test{
public function __construct()
{
$this->_link = mysql_connect('localhost','root','');
mysql_select_db('test_db', $this->_link);
}
public function query($sql)
{
}
}
函数.php
include_once('lib.php');
$lib = new test();
function testFunction(){
$lib->query($sql);
}
问题是变量$db
是未知的,我不想$lib = new test()
为每个函数都输入。提前致谢。