|
header_register_callback(Информация о версии неизвестна, возможно, только в SVN) header_register_callback — Call a header function ОписаниеRegisters a function that will be called when PHP starts sending output. The callback is executed just after PHP prepares all headers to be sent, and before any other output is sent, creating a window to manipulate the outgoing headers before being sent. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. ПримерыПример #1 header_register_callback() example
<?php Результатом выполнения данного примера будет что-то подобное: Content-Type: text/plain a Примечанияheader_register_callback() is executed just as the headers are about to be sent out, so any output from this function can break output.
Смотрите также
|
|