开发者

how to find server current datetime while uploading the file and downloading the file using php and mysql

开发者 https://www.devze.com 2022-12-09 17:31 出处:网络
how to find server current datetime while 开发者_JAVA技巧uploading the file and downloading the file using php and mysqlYou might be interested in the php functions time() and date():

how to find server current datetime while 开发者_JAVA技巧uploading the file and downloading the file using php and mysql


You might be interested in the php functions time() and date():

http://www.php.net/manual/en/function.time.php

http://www.php.net/manual/en/function.date.php


Try these: In PHP:

$t = time();
$d = date();

In Mysql:

now()
select now()
0

精彩评论

暂无评论...
验证码 换一张
取 消