实例说明:<?php echo fileatime("test.txt"); echo "<br />"; echo "Last access: ".date("F d Y H:i:s.",fil...
实例说明:<?php echo file_exists("test.txt"); ?>标签含义:file_exists() 函数检查文件或目录是否存在。如果指定的文件或目录存在则返回 TRUE,否则返回 FALSE。源代码运行结果如下:1...
实例说明:<?php print_r(file("test.txt")); ?>标签含义:file() 函数把整个文件读入一个数组中。数组中的每个元素都是文件中相应的一行,包括换行符在内。源代码运行结果如下:Array ( [0] => Hello Wo...
实例说明:test.html 代码内容:<p><b>This is a paragraph.</b></p>PHP 代码:<?php $file = fopen("test.html","r"); ec...
实例说明:<?php $file = fopen("test.txt","r"); echo fgets($file); fclose($file); ?>标签含义:fgets:函数从打开的文件中返回一行。fgets:函数会在到达指定长度(...
实例说明:<?php $file = fopen("test2.txt","r"); echo fgetc($file); fclose($file); ?>标签含义:fgetc:函数从打开的文件中返回一个单一的字符。源代码运行结果如下:H...
实例说明:<?php $file = fopen("test.txt","r+"); // some code fflush($file); ?>标签含义:fflush() 函数向打开的文件写入所有的缓冲输出。如果成功则返回 TRUE,如果...
实例说明:<?php $file = fopen("test.txt", "r"); //Output a line of the file until the end is reached while(! feof($file)) { ech...
实例说明:<?php $file = fopen("test.txt","r"); //some code to be executed fclose($file); ?>标签含义:fclose() 函数关闭打开的文件。该函数如果成功则返回...
实例说明:<?php echo disk_total_space("C:"); ?>标签含义:disk_total_space() 函数返回指定目录的磁盘总容量,以字节为单位。源代码运行结果如下:119990349824...