PHP touch() 函数实例教程

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

PHP touch() 函数实例教程的相关文章

PHP implode() 函数实例教程

 PHP implode() 函数实例教程 定义和用法  implode( )函数返回一个字符串的内容阵列. 语法 implode(separator,array)参数说明分隔可选.指定放什么东西到之间的数组元素.默认为" " (空字符串) 阵列必需的.阵列加入到一个字符串-------------------------------------------------- ------------------------------ 提示和说明注:implode( )函数接受其参数要么

js split 字符分割函数实例教程

js split 字符分割函数实例教程 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-

PHP array_push() 函数实例教程与使用方法

PHP array_push() 函数实例教程与使用方法 定义和用法 该array_push ( )函数插入一个或多个元素的末尾一个数组. 语法 array_push(array,value1,value2...) 参数说明阵列必需的.指定一个数组value1要求.指定的值增加value2可选.指定的值增加 提示和说明提示:您可以添加一个值,或多达你喜欢. 注意:即使您已经字符串数组键,您的补充内容将allways有数字键. (见例2 )     <?php $a=array("Dog&q

php教程:stristr 函数实例教程

php教程:stristr 函数实例教程 定义和用法 该stristr ( )函数搜索首次出现了一系列内部其他字串. 这个函数返回其余的字符串(从匹配点) ,或FALSE ,如果该字符串搜索没有发现. 语法 stristr(string,search) string: 必选,查找指定的字符 search: 必需的.指定的字符串搜索.如果此参数是一个数字,它将寻求匹配的字符的ASCII值的数目 提示和说明注:此功能是二进制的安全. 注:此功能是区分大小写.为区分大小写的搜索,使用strstr (

PHP tmpfile() 函数实例教程

PHP tmpfile() 函数实例教程 定义和用法 该tmpfile ( )函数创建一个临时文件中一个独特的名字读写(瓦特+ )模式. 语法 tmpfile() 提示和说明注:临时文件自动删除时,关闭fclose ( )时,或在脚本结束. 提示:又见tempnam ( ) 来看看实例. <?php $temp = tmpfile(); fwrite($temp, "Testing, testing."); //Rewind to the start of file rewind

javascript split函数实例教程

 javascript教程 split函数实例教程 <html> <head> <script> function foo() { var str = reverse('a,b,c,d,e,f,g'); alert(str); if (str == 'g,f,e,d,c,b,a') alert('成功'); else alert('失败'); } function reverse(str) { // 在此处加入代码,完成字符串翻转功能 var spl = str.spl

sql MAX() 与min函数实例教程

sql  MAX() 与min函数实例教程好了下面我们先来看看sql max教程吧. SQL MAX() 语法. SELECT MAX(column_name) FROM table_name 下面来看个sql max实例. Id OrderDate OrderPrice Customer 1 2008/11/12 1000 Hansen 2 2008/10/23 1600 Nilsen 3 2008/09/02 700 Hansen 4 2008/09/03 300 Hansen 5 2008

php函数 strcmp函数实例教程

定义和用法 该strcmp ( )函数比较两个字符串. 这个函数返回: 0 -如果这两个字符串相等 " 0 -如果字符串小于字符串 " 0 -如果字符串大于字符串 语法 strcmp(string1,string2) Parameter Description string1 必需的.指定的第一个字串比较 string2 必需的.指定第二个字符串比较 提示和说明注: strcmp ( )函数是二进制安全和区分大小写. 例如 <?php echo strcmp("Hell

PHP strchr() 函数实例教程

PHP strchr() 函数实例教程 定义和用法 该strchr ( )函数搜索首次出现了一系列内部其他字串. 这个函数返回其余的字符串(从匹配点) ,或FALSE ,如果该字符串搜索没有发现. 这一功能是一个别名的strstr ( )函数. 语法 strchr(string,search) Parameter Description string 必需的.指定字符串搜索 search 必需的.指定的字符串搜索.如果此参数是一个数字,它将寻求匹配的字符的ASCII值的数目 提示和说明注:此功能