怎么通过PHP获取文件创建与修改时间

怎么通过PHP获取文件创建与修改时间,第1张

1.获取文件创建时间示例:

$ctime=filectime("chinawinxp.txt")

echo "创建时间:".date("Y-m-d H:i:s",$ctime)

2.获取文件修改时间示例:

$mtime=filemtime("chinawinxp.txt")

echo "修改时间:".date("Y-m-d H:i:s",$mtime)

在fopen中写全路径或相对路径,

全路径比如

$myfile = fopen("c:\\my_data\\20150803\\20150803.txt", "w") or die("Unable to open file!")

相对路径比如

$myfile = fopen($_SERVER['DOCUMENT_ROOT']."/my_data/20150803/20150803.txt", "w") or die("Unable to open file!")

就会把文件生成在指定位置。

PHP如何设置页面最大执行时间

方法:

1、在php.ini文件中 max_execution_time 代表了最大执行时间,其默认值为30。

2、set_time_limit(int seconds)这个函数可以设定,不过据说要在linux下才有用,而且在php.ini中的safe_mode = off

3、ini_set('max_execution_time',最大时间)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11476605.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存