$path1= "E:/myphp/text.txt";
if (!file_exists($path1)){
echo "The 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. Explanation:
fopen is to open file resources.
Usage:
$file=fopen("welcome.txt","r");
Specific meaning: The first parameter is the file path. The following parameters are required to use the method to open the file. There are several 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 first 4 are more commonly used.
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])
Read a line from the file pointed to by handle and return a line with a length of at most length - 1 byte string. 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 that fgetss attempts to read from Remove any HTML and PHP tags from the text. (Same as fgets(), except that it filters html and php tags.)
You can use the optional third parameter to specify which tags are not to be removed.
The feof() function detects whether the end of file (eof) has been reached.
//Judge whether the file or directory exists
bool file_exists(string filename)
Judge whether the file or directory exists, return true if it exists, otherwise return false
Format:
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");
means opening the hello.txt file in writing mode
//Write file
Format:
fwrite(resource,string);
Description: Add the specified content to the open 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 line of data
Format:
fgets(int handle[,int length])
Description: Read length-1 characters. If length is not specified, the default byte is 1KB.
If a newline, EOF or length-1 characters have been read, the program will terminate.
Return false when an error occurs;
Example:
$handle = fopen(“hello.txt”,”r”);
$buffer = fgets($handle,1024);
echo $handle; //Output a line Information
//Read the entire file
Format:
readfile(filename)
Description: Read the entire file and output it to the browser
Example:
readfile(“hello.txt”);
?>
//Get the file size
Format:
filesize(filename)
Description: Get the specified file size, return false on error
Example:
filesize(“a.rar”)
//Delete file
Format:
unlink()
Description: Delete a file, return true if successful, otherwise return false
Example:
unlink ("b.txt")
//Create a directory
Format:
mkdir(dirname)
Description: Create a directory
Example: mkdir("newfolder"); //In the current directory Create new folder
//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 the file path information
pathinfo(path)
Description: Return the file path information, the result is saved in the array, the array subscript is
dirname (path), basename (file name), extension (extension name)
Example: pathinfo(“c:mytoolsa.txt”)
//Get the absolute path
Format:
realpath(filename)
Description: Get the absolute path of the specified file, return false on failure
Example: realpath(" h.txt”) //F:apacheexampleh.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
is a directory, return true, otherwise return false. As follows:
if(is_dir(“newfolder”)){
Format: opendir(path)
Description: Open a specified file directory and return a resource identifier
Example:
//Read directory
Format:
readdir($handle)Description: Read an open file directory stream
readdir($hand);
//Close the directory
Format: closedir($handle)
Description: Close an open directory stream
Example: closedir($hand);
http://www.bkjia.com/PHPjc/327764.html
www.bkjia.com
true

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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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.

Notepad++7.3.1
Easy-to-use and free code editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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