Rumah > Soal Jawab > teks badan
date_format() 跟date()接受相同的参数,并返回相同的值,那么他们之间到底有什么差别。
同义词么?
参考资料:
http://www.php.net/manual/zh/function.date.php
http://www.php.net/date_format
PHPz2017-04-10 14:41:59
date_format()
是DateTime
类的一个成员函数的别名。DateTime
类是PHP5.2之后引入的类,除了比date()
更优秀一点没什么差别。
The main difference between using the date() function and the DateTime object is that it's easier to modify the date values. —— DateTime In PHP