|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull Requests
Pull requests: 
 HistoryAllCommentsChangesGit/SVN commits              [2015-06-27 18:45 UTC] cmb@php.net
 
-Assigned To:
+Assigned To: cmb
  [2015-07-14 09:18 UTC] cmb@php.net
 
-Status:      Assigned
+Status:      Open
-Assigned To: cmb
+Assigned To:
  [2016-03-03 18:28 UTC] nikic@php.net
  [2016-03-03 18:28 UTC] nikic@php.net
 
-Status: Open
+Status: Closed
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
Description: ------------ It would be nice, if the built-in webserver supported the MKCALENDAR request method. Test script: --------------- --TEST-- FR #?????: Support MKCALENDAR request method --INI-- allow_url_fopen=1 --SKIPIF-- <?php include "skipif.inc"; ?> --FILE-- <?php include "php_cli_server.inc"; php_cli_server_start('echo $_SERVER["REQUEST_METHOD"];'); $context = stream_context_create(['http' => ['method' => 'MKCALENDAR']]); var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context)); ?> --EXPECT-- string(10) "MKCALENDAR" Expected result: ---------------- PASS Actual result: -------------- FAIL