• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/dav.php
  • Класс: CDav
  • Вызов: CDav::EndsWith
static function EndsWith($haystack, $needle)
{
	$length = mb_strlen($needle);
	if ($length == 0)
		return true;
	return (mb_substr($haystack, -$length) === $needle);
}