Created
November 20, 2016 11:27
-
-
Save gorkamu/45baf2690e990d059d54c4e2f89610b3 to your computer and use it in GitHub Desktop.
Ejemplo de namespaces en 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 | |
namespace Aplicacion\Libreria\Components as Componentes { | |
const CONECTAR_OK = 1; | |
class Conexión { /* ... */ } | |
function conectar() { /* ... */ } | |
} | |
namespace Aplicacion\Recursos\Utils { | |
const CONECTAR_OK = 1; | |
class Conexión { /* ... */ } | |
function conectar() { /* ... */ } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment