This article mainly shares with you PHP file operation examples, that is, recording logs, directory, file traversal, uploading, multiple methods to obtain file extensions, file reference methods, and reference function differences.
1. 文件建立:fopen()
$file = fopen("test.txt","r");
"r" |
Open in read-only mode and point the file pointer to the file header. |
"r+" |
Open in read-write mode and point the file pointer to the file header. |
"w" |
Open the writing mode, point the file pointer to the file header and cut the file size to zero. If the file does not exist, try to create it. |
"w+" |
Open in reading and writing mode, point the file pointer to the file header and cut the file size to zero. If the file does not exist, try to create it. |
"a" |
Open in writing mode and point the file pointer to the end of the file. If the file does not exist, try to create it. |
"a+" |
Open in read-write mode and point the file pointer to the end of the file. If the file does not exist, try to create it. |
2. 文件打开关闭:fopen(),fclose()
3. 文件末尾检查:feof()
函数检测是否已到达文件末尾.
4. 文件读取:fread(),file(), file_get_contents(), fgetc(),fgets()
1. fread(file,length)
从文件指针 file 读取最多 length 个字节,length(必须)
2. file_get_contents(file)
将文件的内容读入到一个字符串中的首选方法
3. file(file)
把整个文件读入一个数组中, 数组中的每个单元都是文件中相应的一行,包括换行符在内。
4. fgetc(file)
从文件指针中读取一个字符
5. fgets(file,length)
从文件指针中读取一行, 碰到换行符(包括在返回值中)、EOF 或者已经读取了 length - 1 字节后停止(要看先碰到那一种情况)。
5. 文件指针:
fseek(file,offset,whence)
把文件指针从当前位置向前或向后移动到新的位置,新位置从文件头开始以字节数度量。
whence可选。可能的值:
SEEK_SET - 设定位置等于 offset 字节。默认。
SEEK_CUR - 设定位置为当前位置加上 offset。
SEEK_END - 设定位置为文件末尾加上 offset (要移动到文件尾之前的位置,offset 必须是一个负值)。 fseek($fp,-2, SEEK_END);//移动指针到文件末尾
ftell() 返回文件指针的当前位置。
rewind() 移动文件指针到文件的开头。
另:php读取超大文件的方法
使用PHP的 fseek 来进行文件操作
这种方式是最为普遍的方式,它不需要将文件的内容全部读入内容,而是直接通过指针来操作,所以效率是相当高效的。
<?php $fp = fopen($file, "r"); $pos = 0; $t = " "; $data = ""; while (!feof($fp)) { while ($t != "\n") { fseek($fp, $pos); $t = fgetc($fp); $pos ++; } $t = " "; $data .= fgets($fp); } fclose ($fp); echo $data ?>
6. 获取文件扩展名:
1. substr(strrchr($filename, '.'), 1);
2. substr($filename, strrpos($filename, '.')+1);
3. end(explode('.', $filename));
4. pathinfo($filename, PATHINFO_EXTENSION); (PHP Filesystem 函数)
7. 目录与文件遍历:
function traverse($path){ $current_dir = opendir($path); //opendir()返回一个目录句柄,失败返回false while(($file = readdir($current_dir)) !==false) {//readdir()返回打开目录句柄中的一个条目 $sub_dir = $path .DIRECTORY_SEPARATOR(‘/’) . $file; //构建子目录路径 if($file == '.' || $file== '..') { continue; } else if(is_dir($sub_dir)) { //如果是目录,进行递归 echo 'Directory ' . $file .':<br>'; traverse($sub_dir); } else { //如果是文件,直接输出 echo 'File in Directory ' . $path .': ' . $file . '<br>'; }} closedir($current_dir); }//记得打开后要关闭目录句柄哦
<br>
8. 文件锁定
flock(file,lock,block)
函数锁定或释放文件。若成功,则返回true。若失败,则返回 false。
Lock 参数可以是以下值之一:
· 要取得共享锁定(读取的程序),将 lock 设为LOCK_SH (share)
· 要取得独占锁定(写入的程序),将 lock 设为LOCK_EX (exclusive)
· 要释放锁定(无论共享或独占),将 lock 设为 LOCK_UN
· 如果不希望 flock() 在锁定时堵塞,则给lock 加上LOCK_NB
block可选。若设置为 1 或 true,则当进行锁定时阻挡其他进程。
<?php $file = fopen("test.txt","w+"); // 排它性的锁定 if (flock($file,LOCK_EX)) { fwrite($file,"Write something"); // release lock flock($file,LOCK_UN); } else { echo "Error locking file!"; } fclose($file); ?>
共享锁与排他锁的区别:
1.共享锁(S锁):如果事务T对数据A加上共享锁后,则其他事务只能对A再加共享锁,不能加排他锁。获准共享锁的事务只能读数据,不能修改数据。
排他锁(X锁):如果事务T对数据A加上排他锁后,则其他事务不能再对A加任任何类型的封锁。获准排他锁的事务既能读数据,又能修改数据。
2.共享锁下其它用户可以并发读取,查询数据。但不能修改,增加,删除数据。资源共享.[1]
相关推荐:
The above is the detailed content of PHP file operation example sharing. For more information, please follow other related articles on the PHP Chinese website!

TomodifydatainaPHPsession,startthesessionwithsession_start(),thenuse$_SESSIONtoset,modify,orremovevariables.1)Startthesession.2)Setormodifysessionvariablesusing$_SESSION.3)Removevariableswithunset().4)Clearallvariableswithsession_unset().5)Destroythe

Arrays can be stored in PHP sessions. 1. Start the session and use session_start(). 2. Create an array and store it in $_SESSION. 3. Retrieve the array through $_SESSION. 4. Optimize session data to improve performance.

PHP session garbage collection is triggered through a probability mechanism to clean up expired session data. 1) Set the trigger probability and session life cycle in the configuration file; 2) You can use cron tasks to optimize high-load applications; 3) You need to balance the garbage collection frequency and performance to avoid data loss.

Tracking user session activities in PHP is implemented through session management. 1) Use session_start() to start the session. 2) Store and access data through the $_SESSION array. 3) Call session_destroy() to end the session. Session tracking is used for user behavior analysis, security monitoring, and performance optimization.

Using databases to store PHP session data can improve performance and scalability. 1) Configure MySQL to store session data: Set up the session processor in php.ini or PHP code. 2) Implement custom session processor: define open, close, read, write and other functions to interact with the database. 3) Optimization and best practices: Use indexing, caching, data compression and distributed storage to improve performance.

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
