input.php 139 B

123456789
  1. <?php
  2. require_once __DIR__.'/_executor.php';
  3. return function () {
  4. header('Foo: bar');
  5. echo file_get_contents('php://input');
  6. };