Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图从 modx 片段中的日期模板变量中确定事件时间。但是,该模板变量中有一个日期格式化程序小部件,它虽然可以很好地格式化日期,但不会输出事件的时间。
我知道 modx 在它的数据库中存储 unixtime 中的日期,有没有一种简单的方法可以直接访问事件的 unixtime?我目前正在使用$modx->getTemplateVarOutput()通话。
$modx->getTemplateVarOutput()
谢谢你的帮助
如果您查看 Data Formatter 小部件的默认格式,您会看到它设置为:
%A %d, %B %Y
使用此处的信息,如果您想包含时间,则需要类似于%A %d, %B %Y %R的格式。
事实证明,如果您$modx->getTemplateVars()改为使用 then 则允许访问每个元素中的“值”元素中的底层 unixtime。
$modx->getTemplateVars()