function.mtremotesignoutlink.php
来自「1. 记录每个帖子的访问人情况」· PHP 代码 · 共 16 行
PHP
16 行
<?phpfunction smarty_function_MTRemoteSignOutLink($args, &$ctx) { // status: complete // parameters: none $entry = $ctx->stash('entry'); $path = $ctx->mt->config['CGIPath']; if (!preg_match('!/$!', $path)) { $path .= '/'; } return $path . $ctx->mt->config['CommentScript'] . '?__mode=handle_sign_in&' . ($args['static'] ? 'static=1' : 'static=0') . '&entry_id=' . $entry['entry_id'] . '&logout=1';}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?