|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-07-02 11:52 UTC] jani@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 22:00:01 2025 UTC |
Description: ------------ The function "stream_bucket_make_writeable" should be "stream_bucket_make_writable" for consistency with other "writable" php functions (is_writable, SplFileInfo::isWritable, etc.). Reproduce code: --------------- var_dump(function_exists('stream_bucket_make_writeable')); var_dump(function_exists('stream_bucket_make_writable')); Expected result: ---------------- bool(false) bool(true) Actual result: -------------- bool(true) bool(false)