bug69953.phpt 420 B

1234567891011121314151617
  1. --TEST--
  2. FR #69953 (Support MKCALENDAR request method)
  3. --INI--
  4. allow_url_fopen=1
  5. --SKIPIF--
  6. <?php
  7. include "skipif.inc";
  8. ?>
  9. --FILE--
  10. <?php
  11. include "php_cli_server.inc";
  12. php_cli_server_start('echo $_SERVER["REQUEST_METHOD"];');
  13. $context = stream_context_create(['http' => ['method' => 'MKCALENDAR']]);
  14. var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context));
  15. ?>
  16. --EXPECT--
  17. string(10) "MKCALENDAR"