PHP中获取当前页面的URL相关信息
【摘要】PHP中获取当前页面的URL,网址域名,参数,路径
- //js获取项目根路径
- function getRootPath(){
- var curWwwPath=window.document.location.href;
- var pathName=window.document.location.pathname;
- var pos=curWwwPath.indexOf(pathName);
- var localhostPaht=curWwwPath.substring(0,pos);
- var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1);
- return(localhostPaht+projectName);
- }
版权归 马富天PHP博客 所有
本文标题:《PHP中获取当前页面的URL相关信息》
本文链接地址:http://www.mafutian.net/14.html
转载请务必注明出处,小生将不胜感激,谢谢! 喜欢本文或觉得本文对您有帮助,请分享给您的朋友 ^_^