Typecho获取当前页面网址链接

编辑

在源码var/Typecho/Request.php有个getRequestUrl函数可以获取当前网址链接,使用方法如下:

<?php echo $this->request->getRequestUrl(); ?>

当然使用如下使用原生php语法写也是可以的

function thisPageUrl() {
    return (isset($_SERVER['HTTPS']) ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
}
echo thisPageUrl();

评论区

暂无评论,快来抢沙发