|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-08-12 01:31 UTC] brandonskypimenta at gmail dot com
[2012-08-12 01:31 UTC] brandonskypimenta at gmail dot com
-Summary: Create files, delete files, modify files
+Summary: Creating/modifying/deleting files in PHP
[2012-08-12 01:32 UTC] brandonskypimenta at gmail dot com
-PHP Version: Irrelevant
+PHP Version: Newest version of PHP
[2012-08-12 01:32 UTC] brandonskypimenta at gmail dot com
[2012-08-12 07:25 UTC] anon at anon dot anon
[2012-08-12 07:28 UTC] brandonskypimenta at gmail dot com
[2012-08-12 08:00 UTC] reeze dot xia at gmail dot com
[2012-08-12 18:34 UTC] nikic@php.net
-Status: Open
+Status: Not a bug
[2012-08-12 18:34 UTC] nikic@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 01:00:01 2025 UTC |
Description: ------------ Any way to create files, delete files, modify files in PHP using these commands? create_file creates a file. modify_file edits a file's text. delete_file immediately deletes a file. WARNING: Deletion will be permanent! ----------------------------------------------------- © 2013 Test script: --------------- <?php create_file('FooBar.txt', 'Test'); modify_file('FooBar.txt', '-Test|+FooBar', '1'); delete_file('FooBar.txt'); ?>