• Модуль: security
  • Путь к файлу: ~/bitrix/modules/security/classes/general/system_information.php
  • Класс: CSecuritySystemInformation
  • Вызов: CSecuritySystemInformation::getMemCacheInfo
static function getMemCacheInfo()
{
	$memcacheHosts = static::getMemCachedHosts();
	if(!empty($memcacheHosts))
	{
		return array(
			"hosts" => $memcacheHosts,
			"sid" => static::getMemcacheSID()
		);
	}
	else
	{
		return array();
	}
}