mirror of
https://github.com/dunglas/frankenphp
synced 2024-11-21 15:22:16 +00:00
ea5e19ff4b
* fix: getallheaders() must return request headers * cs
35 lines
660 B
PHP
35 lines
660 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
function frankenphp_handle_request(callable $callback): bool {}
|
|
|
|
function headers_send(int $status = 200): int {}
|
|
|
|
function frankenphp_finish_request(): bool {}
|
|
|
|
/**
|
|
* @alias frankenphp_finish_request
|
|
*/
|
|
function fastcgi_finish_request(): bool {}
|
|
|
|
function frankenphp_request_headers(): array {}
|
|
|
|
/**
|
|
* @alias frankenphp_request_headers
|
|
*/
|
|
function apache_request_headers(): array {}
|
|
|
|
/**
|
|
* @alias frankenphp_request_headers
|
|
*/
|
|
function getallheaders(): array {}
|
|
|
|
function frankenphp_response_headers(): array|bool {}
|
|
|
|
/**
|
|
* @alias frankenphp_response_headers
|
|
*/
|
|
function apache_response_headers(): array|bool {}
|
|
|