Up 1 parent directory level

<link href="../styles.css" rel="stylesheet" type="text/css" />

<?php require('../header.php');?>

PHP Website Root directory

  if (is_file($_SERVER['DOCUMENT_ROOT'] . '/myfile.jpg'))
    echo "FILE EXISTS";

This will give you the root directory of the current website (not the server root), e.g. ‘/public_html/’.

If you want to access a folder above it you can do this:

  require_once $_SERVER['DOCUMENT_ROOT'] . '/../vendor/autoload.php';

The current file

Filesystem path – web server referenced
  echo ( __DIR__ );
  //Example output
  //  /home/websiteusername/public_html/the-directory-this-file-is-in

  echo ( __FILE__ );
  //Example output
  //  /home/websiteusername/public_html/the-directory-this-file-is-in/this-file-name.php

Get filename from a path string

path = "/home/httpd/html/index.php";
$FileName = basename($path);         //$FileName is set to "index.php"
$FileName = basename($path, ".php"); //$FileName is set to "index"

$FileExtension = pathinfo($path, PATHINFO_EXTENSION);    //$FileExtension is set to "php"

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *