原文来自:https://www.zixuephp.com
织梦获取当前文章URL地址
有些时候我们需要获取当前文章的网址,以下代码可以获取到:
- {dede:global.cfg_basehost/}{dede:geturlrunphp='yes'}@me=GetCurUrl();{/dede:geturl}
但是上面这句代码只在文章是动态页浏览时有效,如果你的文档是静态访问的方式,就要用到下面的代码:
- {dede:global.cfg_basehost/}{dede:php}$thisid=$refObj->Fields['id'];
- //phpfensi.com
- $arcurl=GetOneArchive($thisid);
- echo$arcurl['arcurl'];{/dede:php}