PHP $this 变量
我正在阅读一些我无法理解的PHP代码:
class foo {
function select($p1, $dbh=null) {
if ( is_null($dbh) )
$dbh = $this->dbh ;
return;
}
function get() {
return $this->dbh;
}
}
我找不到来自类的声明。我的问题是:$this->dbh ($dbh)
的价值是什么?
$this->dbh
它是函数的局部变量吗?
select()
是否属于 的数据成员?为什么在此类中没有 的声明?
$this
class foo
$dbh