• Модуль: translate
  • Путь к файлу: ~/bitrix/modules/translate/lib/io/path.php
  • Класс: BitrixTranslateIOPath
  • Вызов: Path::isPhpFile
static function isPhpFile(string $path, bool $checkExistence = false): bool
{
	return $checkExistence
		? (mb_substr($path, -4) === '.php') && is_file($path)
		: (mb_substr($path, -4) === '.php');
}