OpenCart 🇺🇦

Схема

public void output ( )

Аргументы

Аргумент Возможный тип Описание
У метода нет аргументов

Описание

Выводит содержимое $this->output, предварительно сжимая их (при возможности) и добавляя к http-запросу заданные в $this->headers заголовки.

Исходный код

if ($this->output) {
	if ($this->level) {
		$output = $this->compress($this->output, $this->level);
	} else {
		$output = $this->output;
	}	
		
	if (!headers_sent()) {
		foreach ($this->headers as $header) {
			header($header, true);
		}
	}
	
	echo $output;
}