mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 09:32:24 -04:00
Add Safe PHP functions
This commit is contained in:
parent
04a956886a
commit
58cc098058
260 changed files with 49458 additions and 45 deletions
22
vendor/thecodingmachine/safe/generated/fpm.php
vendored
Normal file
22
vendor/thecodingmachine/safe/generated/fpm.php
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace Safe;
|
||||
|
||||
use Safe\Exceptions\FpmException;
|
||||
|
||||
/**
|
||||
* This function flushes all response data to the client and finishes the
|
||||
* request. This allows for time consuming tasks to be performed without
|
||||
* leaving the connection to the client open.
|
||||
*
|
||||
* @throws FpmException
|
||||
*
|
||||
*/
|
||||
function fastcgi_finish_request(): void
|
||||
{
|
||||
error_clear_last();
|
||||
$result = \fastcgi_finish_request();
|
||||
if ($result === false) {
|
||||
throw FpmException::createFromPhpError();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue