Created
February 18, 2017 16:33
-
-
Save YurePereira/75d9109988aa3954898cbb7863370484 to your computer and use it in GitHub Desktop.
Incluindo arquivos com caminho absoluto no PHP.
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 | |
| $path = dirname(__FILE__) . '\components\\'; | |
| //Ou também: | |
| //$path = __DIR__ . '\components\\'; | |
| $file = $path . 'header.php'; | |
| include($file); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment