PHP touch() 函数实例教程
定义和用法
touch( )函数设置了访问和修改时间的指定文件。
此函数返回TRUE成功,或FALSE的失败。
语法
touch(filename,time,atime)
Parameter | Description |
---|---|
filename | Required. Specifies the file to touch |
time | Optional. Sets the time. The current system time is set by default |
atime | Optional. Sets the access time. Default is the current system time if no parameters are set, or the same as the time parameter if that parameter is set |
提示和说明
注意:如果指定的文件不存在,这将是创建。
例如
<?php touch("test.txt"); ?>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, 文件
, 实例
, 函数
, 教程
is
excel函数实例教程、php touch函数、vlookup函数实例教程、excel if函数实例教程、python函数 实例教程,以便于您获取更多的相关知识。
时间: 2024-10-01 04:58:17