Forked from simaovergalho/PHP-normalize_global_path
Last active
April 8, 2018 02:52
-
-
Save Narayon/6e5ec015233310754486 to your computer and use it in GitHub Desktop.
PHP: global vars for normalizing the ROOT and HTTP paths of the app.
This file contains hidden or 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 | |
// a.php: assuming this included everywhere at very first line | |
// and located in root directory | |
// preferable, define a constant instead of variable, cos it | |
// may used in functions directly without "global $ROOT"; | |
// to use for "include" | |
define('ROOT', __DIR__); // for PHP >= 5.3 | |
define('ROOT', realpath(dirname(__FILE__))); // for PHP < 5.3 | |
// to use for "src,href" | |
define('HTTP', 'http://www.mydomain.com/'); | |
// includes | |
include ROOT .'/layout_header.php'; | |
include ROOT .'/classes/mailer.php'; | |
include ROOT .'/foo/bar/baz.php'; | |
... | |
// src,href | |
printf('<img src="%s/img/lollipop.png" />', HTTP); | |
printf('<script src="%s/js/move.js" />', HTTP); | |
print '<a href="'. HTTP .'/aFolder/movement.php">Click here!</a>'; | |
... | |
// inline without global vars includes | |
define('ROOT', realpath(__DIR__ . '/../')); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment