如果可以,我们可以在类中的其他静态函数中调用静态函数吗?请帮助我。我正在使用这个 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.
}