|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-11-02 08:38 UTC] samayo at 2itb dot com
[2017-11-02 08:47 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2017-11-02 08:47 UTC] requinix@php.net
[2017-11-03 09:55 UTC] namonexarap at gmail dot com
-Status: Feedback
+Status: Closed
[2017-11-03 09:55 UTC] namonexarap at gmail dot com
[2017-11-03 10:18 UTC] spam2 at rhsoft dot net
[2017-11-03 14:48 UTC] requinix@php.net
-Status: Closed
+Status: Not a bug
[2020-12-12 13:32 UTC] testreal at i dot ua
-: namonexarap at gmail dot com
+: testreal at i dot ua
[2020-12-12 13:32 UTC] testreal at i dot ua
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 05:00:01 2025 UTC |
Description: ------------ See the test script. Contents of file "my.txt" before running the test script ------------------------- abc ------------------------- Test script: --------------- $data = file_get_contents("my.txt"); $data2 = $data.'Q'; file_put_contents("my.txt", $data2); Expected result: ---------------- Contents of file "my.txt" after running the test script ------------------------- abcQ ------------------------- Actual result: -------------- Contents of file "my.txt" after running the test script ------------------------- abcQQ -------------------------