Skip to content

Instantly share code, notes, and snippets.

@gmsantos
Created December 9, 2014 18:45
Show Gist options
  • Save gmsantos/edb94ae700792dc8175c to your computer and use it in GitHub Desktop.
Save gmsantos/edb94ae700792dc8175c to your computer and use it in GitHub Desktop.
Constantes PHP
<?php
define('FOO','Hello World');`
<?php
namespace testeConstant;
Class Foo {
public function exibeFoo(){
echo \FOO; // Hello World
}
}
<?php
include_once("Configuracao.php");
require_once('Foo.php');
use testeConstant\Foo;
$foo = new Foo();
$foo->exibeFoo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment