FrankenPHP (worker mode) PHP
Snippet na PHP don FrankenPHP (worker mode) da ke amsa requests zuwa /pixel.gif da empty GIF, wanda ake decoding ɗinsa sau ɗaya lokacin farawa.
FrankenPHP (worker mode) PHP
<?php
// Worker script: booted once, then handles requests in a loop.
ignore_user_abort(true);
$gif = base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
$handler = static function () use ($gif): void {
if (parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) !== '/pixel.gif') {
http_response_code(404);
return;
}
header('Content-Type: image/gif');
header('Content-Length: ' . strlen($gif));
header('Cache-Control: no-store');
echo $gif;
};
while (frankenphp_handle_request($handler)) {
gc_collect_cycles();
}
Mun gudanar da wannan snippet kuma mun kwatanta bytes ɗin da ya mayar.
Duba shi
curl -sI http://localhost:8080/pixel.gif
Shafin hukuma: FrankenPHP (worker mode)