欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

格式化时间

shiping1 的头像
格式化时间
function phptemplate_comment_submitted($comment) {
    return t('!datetime — !username', array (
        '!username' => theme('username', $comment),
        '!datetime' => format_date($comment->timestamp)
    ));
}

/**
 * Returns the themed submitted-by string for the node.
 */
function phptemplate_node_submitted($node) {
    return t('!datetime — !username', array (
        '!username' => theme('username', $node),
        '!datetime' => format_date($node->created),
        
    ));
}
普通分类: