|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-12-06 13:50 UTC] helly@php.net
[2007-12-06 17:26 UTC] helly@php.net
[2007-12-06 17:37 UTC] dz at bitxtender dot com
[2009-07-21 13:48 UTC] david dot zuelke at bitextender dot com
[2009-07-22 16:53 UTC] david dot zuelke at bitextender dot com
[2009-08-01 01:53 UTC] jani@php.net
[2009-08-01 03:17 UTC] svn@php.net
[2009-08-01 03:19 UTC] jani@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 15:00:02 2025 UTC |
Description: ------------ When an fopen() is done on an HTTP URL with mode "r", the stream_get_meta_data() result returns "r+" Reproduce code: --------------- $f = fopen('http://www.google.com/', 'r'); var_dump(stream_get_meta_data($f['mode'])); Expected result: ---------------- string 'r' (length=1) Actual result: -------------- string 'r+' (length=2)