doujingke4981 2011-11-28 23:48
浏览 156
已采纳

PHP:如何获取当前URL的目录深度?

I'm working on the 404 page for my company's site, and it has a $depth variable that says "../site/". This works fine for any bad urls in the base directory, but anything in a subfolder is grabbing the css files from the wrong place using the $depth variable. I tried $depth = '/site/' and it grabbed no css files at all. My question is, how can I have PHP figure out the $depth dynamically, specifically, the number of ../ to put in? If I can get a number or something, this is easy, but I can't seem to find a quick, easy way to do this.

Edit: Turns out, the 404.php file is only in one location, regardless of which directory the bad url is referencing. So, my real problem is probably not php-related at all. Why would a 404 page get a css file in one folder when reached from www.siteurl.com/404 but get a css file of the same name from a different folder when reached from www.siteurl.com/foo/bar?

  • 写回答

4条回答 默认 最新

  • doulu6234 2011-11-29 03:49
    关注

    Here's a function I wrote a few years ago, I use it on my website. It should help:

    <?
    function absolute_include($file)
             {
             /*
             $file is the file url relative to the root of your site.
             Yourdomain.com/folder/file.inc would be passed as
             "folder/file.inc"
             */
    
             $folder_depth = substr_count($_SERVER["PHP_SELF"] , "/");
    
             if($folder_depth == false)
                $folder_depth = 1;
    
             include(str_repeat("../", $folder_depth - 1) . $file);
             }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作