Difference between revisions of "PHP/file/io"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< PHP‎ | file
Jump to navigation Jump to search
Line 1: Line 1:
 +
{{fmt/title|PHP file access functionality}}
 
This is a quick index to information about accessing files in PHP.
 
This is a quick index to information about accessing files in PHP.
 +
==Related==
 +
* {{l/same|filesystem}}: folders/directories, file meta
 
==Functions==
 
==Functions==
 
* [https://www.php.net/manual/en/ref.filesystem.php Filesystem Functions]
 
* [https://www.php.net/manual/en/ref.filesystem.php Filesystem Functions]
Line 12: Line 15:
 
*** <code>[https://www.php.net/manual/en/function.fseek fseek()]</code>: seek absolute or relative position
 
*** <code>[https://www.php.net/manual/en/function.fseek fseek()]</code>: seek absolute or relative position
 
*** <code>[https://www.php.net/manual/en/function.fwrite fwrite()]</code>: binary-safe write
 
*** <code>[https://www.php.net/manual/en/function.fwrite fwrite()]</code>: binary-safe write
* [https://www.php.net/manual/en/refs.fileprocess.file.php File System Related Extensions]
+
* [https://www.php.net/manual/en/refs.fileprocess.file.php File System Related Extensions]: also includes {{l/same|filesystem}}-related extensions

Revision as of 19:08, 19 June 2022

PHP file access functionality

This is a quick index to information about accessing files in PHP.

Related

Functions