Joomla CMS  4.2.2
Documentation des API du CMS Joomla en version 4.2.2
Référence de la classe TextResponse
+ Graphe d'héritage de TextResponse:

Fonctions membres publiques

 __construct ($text, int $status=200, array $headers=[])
 
- Fonctions membres publiques hérités de Response
 __construct ($body='php://memory', int $status=200, array $headers=[])
 
 getStatusCode ()
 
 getReasonPhrase ()
 
 withStatus ($code, $reasonPhrase='')
 
- Fonctions membres publiques hérités de MessageInterface
 getProtocolVersion ()
 
 withProtocolVersion ($version)
 
 getHeaders ()
 
 hasHeader ($name)
 
 getHeader ($name)
 
 getHeaderLine ($name)
 
 withHeader ($name, $value)
 
 withAddedHeader ($name, $value)
 
 withoutHeader ($name)
 
 getBody ()
 
 withBody (StreamInterface $body)
 

Fonctions membres privées

 createBody ($text)
 

Membres hérités additionnels

- Champs de données hérités de Response
const MIN_STATUS_CODE_VALUE = 100
 
const MAX_STATUS_CODE_VALUE = 599
 

Description détaillée

Plain text response.

Allows creating a response by passing a string to the constructor; by default, sets a status code of 200 and sets the Content-Type header to text/plain.

Documentation des constructeurs et destructeur

◆ __construct()

__construct (   $text,
int  $status = 200,
array  $headers = [] 
)

Create a plain text response.

Produces a text response with a Content-Type of text/plain and a default status of 200.

Paramètres
string | StreamInterface$textString or stream for the message body.
int$statusInteger status code for the response; 200 by default.
array$headersArray of headers to use at initialization.
Exceptions
Exception

Références $text, Symfony\Contracts\Service\__construct(), et TextResponse\createBody().

Documentation des fonctions membres

◆ createBody()

createBody (   $text)
private

Create the message body.

Paramètres
string | StreamInterface$text
Exceptions
Exception

Références $text.

Référencé par TextResponse\__construct().


La documentation de cette classe a été générée à partir du fichier suivant :