About
PHPIn the directory operation and file operation, also introduced, but some people still do not understand. The following is a detailed description of PHP directory operations and file operations.
In any computer device, files are all necessary objects, and in Web programming, the operation of the file has always been a headache for the web programmer, and, the operation of the file in the CMS system this is necessary, very useful, we often encounter generate files directory, file (clip) editing operations, and now I put These functions in PHP are summarized in more detail and examples demonstrate how to use them. For a detailed description of the corresponding function, please refer to the PHP manual. Here is a summary of the key points. And where attention is needed. (This is not in the PHP manual.)
First, directory operations
The first introduction is a function read from the directory, Opendir (), Readdir (), Closedir (), using the file handle is opened first, and then the iteration is listed:
-
- $base _dir = "filelist/" ;
- $fso = Opendir ($base _dir);
- Echo $base _dir. "
- " ;
- while ($flist=readdir ($fso)) {
- Echo $flist. "
- " ;
- }
- Closedir ($fso)
- ?>
This is the return file directory under which the file is already in the directory program (0 file will return false).
Sometimes you need to know the directory information, you can use DirName ($path) and basename ($path), respectively, return the directory portion of the path and the file name part, the Disk_free_space ($path) to return to see space free space.
To create a command:
mkdir ($path, 0777), 0777 is the permission code, the Umask () function is set RmDir ($path) under Non-window
The path to the $path file will be deleted.
DIR--The Directory class is also an important class to manipulate the file directory, there are 3 methods, Read,rewind,close, this is a copy object-oriented class, it first uses the open file handle, and then read by the way of the pointer. Here's a look at the PHP manual:
-
- $d = Dir ("/ETC/PHP5");
- Echo "Handle:" . $d ->handle. "n" ;
- Echo "Path:" . $d ->path. "n" ;
- while (False!== ($entry = $d->read ())) {
- Echo $entry. "n" ;
- }
- $d ->close ();
- ?>
Output:
- Handle:resource ID #2
- Path:/ETC/PHP5
- .
- ..
- Apache
- Cgi
The properties of the file are also very important, including the creation time, the last modified time, the owner, the file group, the type, the size, and so on.
Here we focus on file operations.
Second, the file operation
A, read the file
The first is a file to see if it can read (permission problems), or there is no, we can use the Is_readable function to obtain information.
-
- $file' dirlist.php ';
- if (is_readable($file) = = False) {
- die (' file does not exist or cannot be read ');
- Else {
- echo' presence ';
- }
The function of judging the existence of a file is also file_exists (shown below), but this is obviously not is_readable comprehensive. When a file exists, it can be used
-
- $file"filelist.php";
- if (file_exists($file) = = False) {
- die (' file does not exist ') ;
- }
- $datafile_get_contents($file);
- Echo htmlentities ($data);
However, the file_get_contents function is not supported on earlier versions, you can create a handle to the file first, and then read all with the pointer:
- $fsofopen($cacheFile' r ');
- $datafread($fsofilesize( $cacheFile ));
- fclose ($fso
There is also a way to read a binary file:
- $data = implode (', file ($file
B, write the file
and read the file the same way, first see if it can write:
-
- $file' dirlist.php ';
- if (is_writable($file) = = False) {
- die ("I am chicken feathers, I cannot") ;
- }
If you can write, you can use the File_put_contents function to write
- !--? php span>
- $file = ' dirlist.php ' ;
- if ( is_writable ( $file ) = = False) {
- die ( ");
- }
- $data = " I am despicable, I want ' ;
- file_put_contents ( $file , $data );
- ?>
file_put_contents function in the php5 of the newly introduced function (do not know the existence of the function_exists function first to judge) the lower version of PHP is not available, you can use the following way:
- $ffopen($file' W ');
- fwrite ($f$data);
- fclose ($f
Replace it.
When writing a file, you sometimes need to lock and then write:
- function cache_page ($pageurl,$pagedata) {
- if (! $fso = fopen ($pageurl,' W ')) {
- $this ->warns (' cannot open cache file. ' ) ); //trigger_error
- return false;
- }
- if (! Flock ($fso, LOCK_EX)) {//lock_nb, row-type locking
- $this ->warns (' Unable to lock cache file. ' ) ); //trigger_error
- return false;
- }
- if (!fwrite ($fso,$pagedata)) {//write byte stream, serialize write to other format
- $this ->warns (' cannot write cache file. ' ) ); //trigger_error
- return false;
- }
- Flock ($fso, lock_un); //Release lock
- fclose ($fso);
- return true;
- }
C, copy, delete files
PHP Delete Files is very easy, with the unlink function simple operation:
-
- $file' dirlist.php ';
- $result = @unlink ($file);
- if ($result = = False) {
- echo' mosquitoes have driven away ';
- Else {
- echo' cannot be driven away ';
- }
Can.
Copying files is also easy:
-
- $file = ' Yang.txt ' ;
- $newfile = ' Ji.txt ' The parent folder of this file must be able to write
- if (file_exists($file) = = False) {
- die (' sample not online, cannot copy ');
- }
- $result = Copy ($file, $newfile);
- if ($result = = False) {
- Echo ' copy memory ok ';
- }
- ?>
You can use the rename () function to rename a folder. The other operations are done by combining these functions.
D. Get file attributes
I say a few common functions:
Gets the last modified time:
-
- $file' test.txt ';
- echodate(' R 'filemtime( $file));
Returns a timestamp that says Unix, which is commonly used in caching techniques.
Related to the last time accessed Fileatime (), Filectime () when the permissions of the file, the owner, the metadata in all groups or other inode are updated, the Fileowner () function returns the file owner
- $owner = Posix_getpwuid (fileowner($file
(Non-Window System), Ileperms () Gets the file permissions,
-
- $file' dirlist.php ';
- $permssubstr(sprintf ('%o 'fileperms ($file)),-4);
- echo$perms;
FileSize () returns the number of bytes in the file size:
-
- Output similar to: somefile.txt:1024 bytes
- $filename' somefile.txt ';
- echo$filename': 'filesize( $filename ' bytes ';
To get all the information for a file, there is a function stat () function that returns an array:
-
- $file' dirlist.php ';
- $perms = stat ($file);
- var_dump ($perms);
The key corresponds to what can be consulted in detail, which is not expanded here.
Iv. concluding remarks
Above I briefly summed up a few file operations, if you are familiar with the above listed functions, there is no big problem in operation, PHP file operation function Changes relatively fast, is now very powerful, the file is also a very important part of learning PHP, I hope not to ignore.
http://www.bkjia.com/PHPjc/445748.html www.bkjia.com true http://www.bkjia.com/PHPjc/445748.html techarticle The directory operations and file operations in PHP have also been introduced, but some people still do not understand. The following is a detailed description of PHP directory operations and file operations. On any computer device ...