early-hints.php 235 B

12345678910111213
  1. <?php
  2. require_once __DIR__.'/_executor.php';
  3. return function () {
  4. header('Link: </style.css>; rel=preload; as=style');
  5. header("Request: {$_GET['i']}");
  6. headers_send(103);
  7. header_remove('Link');
  8. echo 'Hello';
  9. };