ID: 37901 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Verified +Status: Closed Bug Type: Documentation problem Operating System: Windows2000 PHP Version: 4.4.2 New Comment:
This bug has been fixed in the documentation's XML sources. Since the online and downloadable versions of the documentation need some time to get updated, we would like to ask you to be a bit patient. Thank you for the report, and for helping us make our documentation better. Previous Comments: ------------------------------------------------------------------------ [2006-06-23 12:46:27] [EMAIL PROTECTED] The docs are wrong, there is no such wrapper in PHP4. ------------------------------------------------------------------------ [2006-06-23 12:30:10] [EMAIL PROTECTED] Description: ------------ file:// wrapper doesn't work on PHP 4.x.x, but it should according to docs http://php.net/opendir Reproduce code: --------------- <?php file_get_contents('file://C:/autoexec.bat'); file_get_contents('file://C:\autoexec.bat'); file_get_contents('file:///autoexec.bat'); $dh = opendir('file://C:\temp'); Actual result: -------------- PHP Notice: file_get_contents(): Unable to find the wrapper "file" - did you forget to enable it when you configured PHP? in c:\test.php on line 3 PHP Warning: file_get_contents(file://C:/autoexec.bat): failed to open stream: Invalid argument in c:\test.php on line 3 PHP Notice: file_get_contents(): Unable to find the wrapper "file" - did you forget to enable it when you configured PHP? in c:\test.php on line 4 PHP Warning: file_get_contents(file://C:\autoexec.bat): failed to open stream: Invalid argument in c:\test.php on line 4 PHP Notice: file_get_contents(): Unable to find the wrapper "file" - did you forget to enable it when you configured PHP? in c:\test.php on line 5 PHP Warning: file_get_contents(file:///autoexec.bat): failed to open stream: Invalid argument in c:\test.php on line 5 PHP Notice: opendir(): Unable to find the wrapper "file" - did you forget to enable it when you configured PHP? in c:\test.php on line 7 PHP Warning: opendir(file://C:\temp): failed to open dir: Invalid argument in c:\test.php on line 7 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37901&edit=1