Dutch PHP Conference 2025 - Call For Papers

Yaf_Response_Abstract::prependBody

(Yaf >=1.0.0)

Yaf_Response_Abstract::prependBodyThe prependBody purpose

Опис

public Yaf_Response_Abstract::prependBody(string $content, string $key = ?): bool

prepend a content to a exists content block

Параметри

body

content string

key

the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

Зауваження:

this parameter is introduced as of 2.2.0

Значення, що повертаються

bool

Приклади

Приклад #1 Yaf_Response_Abstract::prependBody()example

<?php
$response
= new Yaf_Response_Http();

$response->setBody("World")->prependBody("Hello ");

echo
$response;
?>

Поданий вище приклад виведе щось схоже на:

Hello World

Прогляньте також

add a note

User Contributed Notes

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