La classe Yaf_Response_Abstract

(Yaf >=1.0.0)

Introduction

Synopsis de la classe

class Yaf_Response_Abstract {
/* Constantes */
const string DEFAULT_BODY = "content";
/* Propriétés */
protected $_header;
protected $_body;
protected $_sendheader;
/* Méthodes */
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()
}

Propriétés

_header

_body

_sendheader

Sommaire

add a note

User Contributed Notes

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