Drupal 7 如何在 page.tpl.php 中打印当前日期
请帮忙,我想在网页顶部打印当前日期,我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需在
page.tpl.php
中的任意位置添加此行即可:这将以
dd/mm/yyyy
格式显示日期,请参阅 PHP 的日期函数 获取所有可能格式的列表。Just add this line wherever you want to in
page.tpl.php
:That will put the date out in
dd/mm/yyyy
format, see PHP's Date function for a list of all the possible formats.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
还有常量 REQUEST_TIME - https://api。 drupal.org/api/drupal/includes!bootstrap.inc/constant/REQUEST_TIME/7
There is also the constant REQUEST_TIME - https://api.drupal.org/api/drupal/includes!bootstrap.inc/constant/REQUEST_TIME/7