This article is a detailed tutorial on PHP file operations. It is very detailed and comprehensive. I share it with you now. I hope it will be helpful to friends who are learning PHP development.
The code is as follows:
$path1= "E:/myphp/text.txt";
if(!file_exists($path1)){
echo "File does not exist!";
}else{
$handle1 = fopen($path1, 'r+') or exit("Unable to open file");
// while (!feof($handle1)){
// echo fgets($handle1)."
";
// }
while(!feof($handle1)){
echo fgetc($handle1);
}
}
The above code illustrates a simple file reading operation. Description:
fopen is to open file resources.
How to use:
$file=fopen("welcome.txt","r");
Specific meaning: The first parameter is the path of the file. The following parameter is the method required to open the file, which has the following types:
r Read only. Start at the beginning of the file.
r+ read/write. Start at the beginning of the file.
w write only. Opens and clears the contents of the file; if the file does not exist, creates a new file.
w+ read/write. Opens and clears the contents of the file; if the file does not exist, creates a new file.
a append. Opens and writes to the end of a file, or creates a new file if it does not exist.
a+ read/append. Maintain file contents by writing to the end of the file.
x Write only. Create new file. Returns FALSE if the file already exists.
x+
read/write. Create new file. If the file already exists, returns FALSE and an error.
Note: If fopen() cannot open the specified file, it returns 0 (false).
The more commonly used ones are the first 4.
fgetc:
string fgetc ( resource$handle )
Returns a string containing one character obtained from the file pointed to by handle. Returns FALSE if EOF is encountered.
fgets:
string fgets ( int$handle [,int$length ] )
Reads a line from the file pointed to by handle and returns a string of length at most length - 1 bytes. Stops when a newline character (included in the return value), EOF, or length - 1 bytes has been read (whichever occurs first). If length is not specified, it defaults to 1K, or 1024 bytes.
Returns FALSE on error.
fgetss:
string fgetss ( resource$handle [,int$length [,string$allowable_tags ]] )
Same as fgets(), except fgetss attempts to strip any HTML and PHP tags from the text being read. (Same as fgets(), except that it filters html and php tags.)
The optional third parameter can be used to specify which tags are not to be removed.
The feof() function detects whether the end of file (eof) has been reached.
//Determine whether the file or directory exists
bool file_exists(string filename)
Determine whether the file or directory exists, return true if it exists, otherwise return false
Format:
The code is as follows:
if(file_exists(“hello.txt”))
{
Echo "File exists";
}
//Open file
Format:
fopen(filename,mode)
Description: Open the specified file in the specified format
filename: the file name to be opened
mode: open mode
fopen("hello.txt","w");
Indicates opening the hello.txt file in writing
//Write file
Format:
fwrite(resource,string);
Description: Add the specified content to the opened file
resource:open file
string: Content to be written
Example:
$handle = fopen(“hello.txt”,”w”) //If a, data can be appended
fwrite($handle,”1rn”)
//Close the file
Format:
fclose($handle)
Description: Close the open file
Example:
$handle = fopen("hello.txt","w");
fclose($handle);
//Read a row of data
Format:
fgets(int handle[,int length])
Description: Read length-1 characters. If length is not specified, the default byte size is 1KB,
If a newline, EOF is encountered or length-1 characters have been read, the program terminates,
Return false when an error occurs;
Example:
$handle = fopen(“hello.txt”,”r”);
$buffer = fgets($handle,1024);
echo $handle; //Output a line of information
//Read the entire file
Format:
readfile(filename)
Description: Read the entire file and output it to the browser
Example:
readfile(“hello.txt”);
?>
//Get file size
Format:
filesize(filename)
Description: Get the specified file size, return false
if an error occurs
Example:
filesize(“a.rar”)
//Delete files
Format:
unlink()
Description: Delete a file, return true if successful, otherwise return false
Example:
unlink(“b.txt”)
//Create directory
Format:
mkdir(dirname)
Description: Create a directory
Example: mkdir(“newfolder”); //Create a new folder in the current directory
//Delete directory
Format:
rmdir(dirname)
Description: Delete a directory
Example: rmdir(“newfolder”);
//Get the file name
Format:
basename(filepath)
Description: Return the file name
from the specified path
Example:
basename("c:mytoolsa.txt") //return a.txt
//Get file path information
pathinfo(path)
Description: Return file path information, the result is saved in an array, the array subscript is
dirname (path), basename (file name), extension (extension)
Example: pathinfo(“c:mytoolsa.txt”)
//Get absolute path
Format:
realpath(filename)
Description: Get the absolute path of the specified file, and return false
if it fails.
Example: realpath(“h.txt”) //F:apachewww.jnwebseo.comh.txt
//Copy file
Format:
copy(source,dest)
Instructions: Copy the source file to dest
Example: copy(“h.txt”,”newflodera.txt”)
//Determine whether it is a directory
Format:
is_dir(filename)
Description: Determine whether the given file name is a directory. If filename exists and
If it is a directory, it returns true, otherwise it returns false.
Example:
The code is as follows:
if(is_dir(“newfolder”))
{
echo "is a file directory";
}
//Open directory
Format: opendir(path)
Description: Open a specified file directory and return a resource identifier
Example:
$hand = opendir(“.”) //Open the root directory
//Read directory
Format:
readdir($handle)
Description: Read an open file directory stream
readdir($hand);
//Close directory
Format:
closedir($handle)
Description: Close an open directory stream
Example: closedir($hand);

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Linux new version
SublimeText3 Linux latest version

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