且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在 indexSuccess.php 中格式化日期

更新时间:2023-01-20 08:05:15

你可以在 symfony 中在你的 indexSuccess.php 和 showSuccess.php 中制作,而不是例如:

You can make in symfony in your indexSuccess.php and showSuccess.php instead of for example:

 <?php $value->getCreatedAt() ?>

下一个:

 <?php echo date('d.M.Y', strtotime($value->getCreatedAt())) ?>

您可以使用其他格式.

You can use other formats.