|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-10 17:58 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 09:00:02 2025 UTC |
Description: ------------ splFileObject->fwrite() does not write Reproduce code: --------------- > ls -l foo.txt -rwxrwxrwx 1 nobody nobody 0 Feb 10 19:25 foo.txt* <?php $file = new SplFileObject('foo.txt', 'w'); $file->fwrite('text123'); ?> Expected result: ---------------- > ls -l foo.txt -rwxrwxrwx 1 nobody nobody 8 Feb 10 19:25 foo.txt* > cat foo.txt text123 Actual result: -------------- > ls -l foo.txt -rwxrwxrwx 1 nobody nobody 0 Feb 10 19:25 foo.txt* > cat foo.txt