function.mtcgirelativeurl.php
来自「1. 记录每个帖子的访问人情况」· PHP 代码 · 共 15 行
PHP
15 行
<?phpfunction smarty_function_MTCGIRelativeURL($args, &$ctx) { // status: complete // parameters: none $url = $ctx->mt->config['CGIPath']; if (substr($url, strlen($url) - 1, 1) != '/') $url .= '/'; if (preg_match('!^https?://[^/]+(/.*)$!', $url, $matches)) { return $matches[1]; } else { return $url; }}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?