function.mtcommententryid.php

来自「1. 记录每个帖子的访问人情况」· PHP 代码 · 共 11 行

PHP
11
字号
<?phpfunction smarty_function_MTCommentEntryID($args, &$ctx) {    $comment = $ctx->stash('comment');    $id = $comment['comment_entry_id'];    if (isset($args['pad']) && $args['pad']) {        $id = sprintf("%06d", $id);    }    return $id;}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?