• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/web/http/stream.php
  • Класс: BitrixMainWebHttpStream
  • Вызов: Stream::isReadable
public function isReadable(): bool
{
	if ($this->resource)
	{
		$mode = $this->getMetadata('mode');

		return (str_contains($mode, 'r') || str_contains($mode, '+'));
	}

	return false;
}