HttpResponse::send

(PECL pecl_http >= 0.10.0)

HttpResponse::sendSend response

說明

static bool HttpResponse::send ([ bool $clean_ob = true ] )

Finally send the entity.

A successful caching attempt will exit PHP, and write a log entry if the INI 設定 http.log.cache is set. 要知道“出口”的含意請查閱 INI 設定 http.force_exit

參數

clean_ob

whether to destroy all previously started output handlers and their buffers

回傳值

如果成功則回傳 TRUE,失敗則回傳 FALSE

範例

Example #1 A HttpResponse::send() example

<?php
HttpResponse
::setCache(true);
HttpResponse::setContentType('application/pdf');
HttpResponse::setContentDisposition("$user.pdf"false);
HttpResponse::setFile('sheet.pdf');
HttpResponse::send();
?>

參見

add a note add a note

User Contributed Notes

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