Last active
November 24, 2015 05:39
-
-
Save rochellelewis/800828d8d9e49179f50e to your computer and use it in GitHub Desktop.
PHP Relative Pathing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Get the relative path. | |
* @see https://raw.githubusercontent.com/kingscreations/farm-to-you/master/php/lib/_header.php FarmToYou Header | |
**/ | |
// include the appropriate number of dirname() functions | |
// on line 8 to correctly resolve your directory's path | |
require_once(dirname(dirname(__DIR__)) . "/root-path.php"); | |
$CURRENT_DEPTH = substr_count($CURRENT_DIR, "/"); | |
$ROOT_DEPTH = substr_count($ROOT_PATH, "/"); | |
$DEPTH_DIFFERENCE = $CURRENT_DEPTH - $ROOT_DEPTH; | |
$PREFIX = str_repeat("../", $DEPTH_DIFFERENCE); | |
?> | |
<!-- HEAD-UTILS HTML GOES DOWN HERE --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*grab current directory*/ | |
$CURRENT_DIR = __DIR__; | |
/*set page title here*/ | |
$PAGE_TITLE = "MY PAGE TITLE"; | |
/*load head-utils.php*/ | |
require_once("lib/template/head-utils.php"); | |
?> | |
<!-- HTML/PAGE CONTENT GOES HERE --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* defines the root path of the entire site | |
* @see https://raw.githubusercontent.com/kingscreations/farm-to-you/master/root-path.php FarmToYou Definition | |
**/ | |
$ROOT_PATH = __DIR__; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The above code will create a variable $PREFIX which can be used to automatically resolve the correct directory path when linking assets within your templated projects. For example, use this when loading internal CSS files in your head-utils.php file.
This does not apply to assets you would load via
require_once()
.INSTRUCTIONS
root-path.php
to the root of your project.head-utils.php
(lines 1-14), to your HTML head-utils file at the very top.index.php
(lines 1-9), to the top of EACH of your pages.$PREFIX
variable when linking to an internal asset in your head-utils.php file. See examples below.EXAMPLES