Early Hints

FrankenPHP natively supports the 103 Early Hints status code. Using Early Hints can improve the load time of your web pages by 30%.

  1. <?php
  2. header('Link: </style.css>; rel=preload; as=style');
  3. headers_send(103);
  4. // your slow algorithms and SQL queries 🤪
  5. echo <<<'HTML'
  6. <!DOCTYPE html>
  7. <title>Hello FrankenPHP</title>
  8. <link rel="stylesheet" href="style.css">
  9. HTML;

Early Hints are supported both by the normal and the worker modes.