我们可以在类中的其他静态函数中调用静态函数

时间:2012-09-04 07:05:27

标签: php oop

我们可以在类中的其他静态函数中调用静态函数,如果是,请帮助我。我正在使用这个PHP代码。

static function getconfig()
{
$db = JFactory::getDBO();
$query='select * from #__yellowpages_config';
$db->setQuery($query);
$result=$db->loadObject();


$config->city=JRequest::getVar('city',0);
$config->country=JRequest::getVar('c',0);

if($config->city==0)

$config->city=$result->city;

if($config->country==0)

$config->country=$result->country;

return $config;

}
static function getitem()
       {
        //how I call the getconfig function here.
       }

2 个答案:

答案 0 :(得分:4)

请尝试使用self::getconfig()

答案 1 :(得分:2)

如果您想引用同一个班级,请使用self::method()

如果要引用您调用方法的层次结构中的任何类,请使用static::method()

另请参阅此问题:New self vs. new static