|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-03-15 08:28 UTC] robert dot wojciechowski at rmiondemand dot com
[2011-07-06 01:07 UTC] nieves dot blasco at ua dot ac dot be
[2014-02-20 16:32 UTC] ericsten@php.net
-Assigned To:
+Assigned To: ericsten
[2014-07-03 21:28 UTC] ericsten@php.net
-Status: Assigned
+Status: Wont fix
[2014-07-03 21:28 UTC] ericsten@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 18:00:01 2025 UTC |
Description: ------------ WinCache version 1.2.1010.0 When wincache is enabled to reroute the file_get_contents function, the results returned are null. [PHP_WINCACHE] extension=php_wincache.dll wincache.rerouteini=reroute.ini Reroute.ini: [FunctionRerouteList] file_exists=wincache_file_exists file_get_contents:2=wincache_file_get_contents filesize=wincache_filesize readfile:2=wincache_readfile is_readable=wincache_is_readable is_writable=wincache_is_writable is_writeable=wincache_is_writable is_file=wincache_is_file is_dir=wincache_is_dir realpath=wincache_realpath Reproduce code: --------------- <html> <head></head> <body> <p>Hit Submit to see the posted data.</p> <form method="POST"> <input type="hidden" name="someHiddenValue" value="shh!"> <input type="submit" value="Submit"> </form> <p> Data: <?php $sData = file_get_contents("php://input"); echo $sData; ?> </p> </body> </html> Expected result: ---------------- Expect the output of the page to be: Data: someHiddenValue=shh%21 Actual result: -------------- Data: