Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Created February 18, 2017 16:33
Show Gist options
  • Select an option

  • Save YurePereira/75d9109988aa3954898cbb7863370484 to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/75d9109988aa3954898cbb7863370484 to your computer and use it in GitHub Desktop.
Incluindo arquivos com caminho absoluto no PHP.
<?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