Drupal 7 如何在 page.tpl.php 中打印当前日期

发布于 2024-12-10 17:24:26 字数 70 浏览 0 评论 0原文

请帮忙,我想在网页顶部打印当前日期,我正在使用 drupal 7。请告诉我如何在 page.tpl.php 文件中打印当前日期

Please Help, I want to print a current date on the top of my web page, I am using drupal 7.please let me know how can I print a current date in my page.tpl.php file

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

客…行舟 2024-12-17 17:24:26

只需在 page.tpl.php 中的任意位置添加此行即可:

echo date('d/m/Y');

这将以 dd/mm/yyyy 格式显示日期,请参阅 PHP 的日期函数 获取所有可能格式的列表。

Just add this line wherever you want to in page.tpl.php:

echo date('d/m/Y');

That will put the date out in dd/mm/yyyy format, see PHP's Date function for a list of all the possible formats.

度的依靠╰つ 2024-12-17 17:24:26

hai 还使用 time() 函数来获取时间戳

并使用 drupal 函数 format_date() 格式化日期;
格式化日期

hai also use time() function for getting the time stamp

and format the date with drupal function format_date();
format date

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文