Re: finding the web root

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jun 8, 2010 at 12:27 PM, Tanel Tammik <keevitaja@xxxxxxxxx> wrote:

> Hi,
>
> i like to find the web root where the current file is. is there a better
> solution? it must work both on linux and windows machines...
>
> <?php
> $root = explode('/', $_SERVER['DOCUMENT_ROOT']);
> $cwd = explode(DIRECTORY_SEPARATOR, __DIR__);
> $web_root = '/' . implode('/', array_diff($cwd, $root));
> echo $web_root;
> ?>


$_SERVER['DOCUMENT_ROOT']

although a post on the manual mentions some variability between
environments.

-nathan

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux