La clase Yaf_Response_Abstract

(Yaf >=1.0.0)

Introducción

Sinopsis de la Clase

class Yaf_Response_Abstract {
/* Constantes */
const string DEFAULT_BODY = "content";
/* Propiedades */
protected $_header;
protected $_body;
protected $_sendheader;
/* Métodos */
public function __construct()
public function appendBody(string $content, string $key = ?): bool
public function clearBody(string $key = ?): bool
public function clearHeaders(): void
public function getBody(string $key = ?): mixed
public function getHeader(): void
public function prependBody(string $content, string $key = ?): bool
public function response(): void
protected function setAllHeaders(): void
public function setBody(string $content, string $key = ?): bool
public function setHeader(string $name, string $value, bool $replace = ?): bool
public function setRedirect(string $url): bool
private function __toString(): string
public function __destruct()
}

Propiedades

_header

_body

_sendheader

Tabla de contenidos

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top