The Yaf_Response_Abstract class

(Yaf >=1.0.0)

Giriş

Sınıf Sözdizimi

class Yaf_Response_Abstract {
/* Sabitler */
const string DEFAULT_BODY = "content";
/* Özellikler */
protected $_header;
protected $_body;
protected $_sendheader;
/* Yöntemler */
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()
}

Özellikler

_header

_body

_sendheader

İçindekiler

add a note

User Contributed Notes

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