实例说明:<?php touch("test.txt"); ?>标签含义:touch:函数设置指定文件的访问和修改时间。如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。filename:必需。规定要接触的文件。time:可选。设置时间。默认设置为当前...
实例说明:umask(mask)标签含义:umask:函数改变文件的文件权限。该函数把 PHP 的 umask 设置为 mask & 0777 并返回原来的 umask。然而,如果您调用 umask() 时不带参数,则会返回当前的 umask。mask:可选。规定新的权限。默认是 0777。...
实例说明:<?php $file = "test.txt"; if (!unlink($file)) { echo ("Error deleting $file"); } else { echo ("Deleted $file&...
实例说明:<?php echo filectime("test.txt"); echo "<br />"; echo "Last change: ".date("F d Y H:i:s.",fil...
实例说明:<?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...