PHP 日期函数用于打印服务器日期或当前日期。它主要用于记录系统在服务器上执行任何操作时的信息。人们可以更改任何特定操作所需的日期信息。提供的数据将是标准的 (yyyy-mm-dd),因为可以根据需要使用许多日期方法和函数更改日期。下面列出了用于更改服务器中日期格式的技术。
广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
PHP 日期格式:
PHP 更改日期格式为您提供执行特定 PHP 脚本的服务器的日期信息。因此,当日期函数执行时,服务器会以标准格式向我们提供信息。如果您想根据需要更改格式,可以使用多种方法来完成。
PHP 中使用了几种数据格式来根据要求打印日期:
许多程序员使用不同的日期和时间函数来根据他们的要求进行更改。更改取决于地区以及使用地点。
例如,如果用户想要使用数据库来记录任何员工条目,而服务器的日期格式与数据库使用的格式不同,那么数据库将不接受标准格式,因为数据库有其限制。因此,用户必须使用 PHP 中可用的各种技术将格式更改为所需的格式。在很多情况下,日期和时间函数都有其格式。
例如,在印度,日期将以 IST(印度标准时间)格式打印;在美国,将以 CDT/CST(中部标准时间)格式打印;在日本,将以 JST(日本标准时间)格式打印,在加拿大,将以 EST(东部标准时间)格式打印。因此,数据库和服务器将具有相对不同的时区。为了使其与日期格式兼容,时区会相应更改,以免输入的数据之间出现任何冲突。其中一项技术是 strtotime() 函数,它按原样打印格式中提到的日期。
这里是使用 strtotime() 函数的示例,该函数打印日期。
代码:
<!DOCTYPE html> <html> <body> <?php $o = "2019-10-30"; // It creates the timestamp from the date mentioned. $a = strtotime($o); $new = date("d/m/Y", $a); echo $new; ?> </body> </html>
输出:
在上面的输出中,提到的日期将是日期函数中提到的日期。由于这里提到的日期是 d/m/y,因此输出也具有相同的格式。如果您想指定连字符(-)而不是反斜杠(/),您可以在日期格式本身中提及它。
以下是如何将日期从标准格式转换为所需格式的一些示例。
代码:
<!DOCTYPE html> <html> <body> <?php $currentdate=date_create("2012-09-13"); echo date_format($currentdate,"m/d/Y"); ?> </body> </html>
输出:
在上面的代码和输出中,日期格式函数中指定的日期是要在输出中打印的日期。用户可以指定他想要看到的任何格式,例如 dd-mm-yyyy 或 dd-mm-yy 或 dd/mm/yyyy 或 dd/mm/yy 等
代码:
<!DOCTYPE html> <html> <body> <?php $a = '2019-05-25'; $d = new DateTime($a); echo $d->format('Y.m.d'); ?> </body> </html>
输出:
在上面的代码和相应的输出中,日期格式在使用函数格式传递的代码中提到,如上所示。 DateTime() 方法会将日期转换为 format 函数中提到的格式,并创建一个对象将其传递给 format 函数。
Code:
<!DOCTYPE html> <html> <body> <?php $date=date_create_from_format("j-M-Y","27-Feb-2019"); echo " The changed date format is ", date_format($date,"d/m/Y"); ?> </body> </html>
Output:
In the above code, the format specified in the date created from the format method is the input to the method date_format as the date mentioned in the code will be printed in the format mentioned in the code.
So we learned many methods as to how to change the date for a particular format using various date functions. In all the date functions, the common thing was already the date was mentioned in the code itself. If you want to take the current date as the input to the specified format, you can simply use the date () function or Date Time () function to retrieve the date and time, respectively. So the user can work the static way as well as a dynamic way to retrieve the date from the server. Similarly, like date functions, we have various time functions that can be used to change the time zones as well as the time format of the servers. All of the servers will have a common time, i.e. UTC (Universal Time Zone), unless it gets changed to its respective country/region.
In this article, we discussed the date format, how to change the date format, and its types. These changes’ main objective is to have a smooth flow between various conflicts faced when servers of different countries are used together and have a commonplace as a repository.
This is a guide to PHP Change Date Format. Here we discuss different types of date format and their examples, along with code implementation and output. You can also go through our other suggested articles to learn more –
以上是PHP 更改日期格式的详细内容。更多信息请关注PHP中文网其他相关文章!