Get 2 levels up from dirname( __FILE__)

44,403

Solution 1

PHP 5.3+

return dirname(__DIR__);

PHP 5.2 and lower

return dirname(dirname(__FILE__));

With PHP7 go further up the directory tree by specifying the 2nd argument to dirname. Versions prior to 7 will require further nesting of dirname.

http://php.net/manual/en/function.dirname.php

Solution 2

Even simpler than dirname(dirname(__FILE__)); is using __DIR__

dirname(__DIR__);

which works from php 5.3 on.

Solution 3

[ web root ]
    / config.php
    [ admin ] 
        [ profile ] 
            / somefile.php 

How can you include config.php in somefile.php? You need to use dirname with 3 directories structure from the current somefile.php file.

require_once dirname(dirname(dirname(__FILE__))) . '/config.php'; 

dirname(dirname(dirname(__FILE__))) . '/config.php'; # 3 directories up to current file

Solution 4

Late to the party, but you can also do something like below, using \..\..\ as many times as needed to move up directory levels.

$credentials = require __DIR__ . '\..\App\Database\config\file.php';

Which is the equivalent to:

$credentials = dirname(__DIR__) . '\App\Database\config\file.php';

The benefit being is that it avoids having to nest dirname like:

dirname(dirname(dirname(__DIR__))

Note, that this is tested on a IIS server - not sure about a linux server, but I don't see why it wouldn't work.

Solution 5

As suggested by @geo, here's an enhanced dirname function that accepts a 2nd param with the depth of a dirname search:

/**
 * Applies dirname() multiple times.
 * @author Jorge Orpinel <[email protected]>
 * 
 * @param string $path file/directory path to beggin at
 * @param number $depth number of times to apply dirname(), 2 by default
 * 
 * @todo validate params
 */
function dirname2( $path, $depth = 2 ) {

    for( $d=1 ; $d <= $depth ; $d++ )
        $path = dirname( $path );

    return $path;
}

Note: that @todo may be relevant.

The only problem is that if this function is in an external include (e.g. util.php) you can't use it to include such file :B

Share:
44,403
levi
Author by

levi

Updated on October 01, 2022

Comments

  • levi
    levi over 1 year

    How can I return the pathname from the current file, only 2 directories up?

    So if I my current file URL is returning theme/includes/functions.php

    How can I return "theme/"

    Currently I am using

    return dirname(__FILE__)