Dot-dot Directory ..

The .. directory represents the parent directory of the current one. This directory always exists, at the root directory, aka / is also its own parent.

<?php

    // lists of the files in the parent directory
    $files = glob('../*.php');

?>

See also Dot and dot-dot directories.

Related : Path, . Directory, . File