Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created November 20, 2016 11:27
Show Gist options
  • Save gorkamu/45baf2690e990d059d54c4e2f89610b3 to your computer and use it in GitHub Desktop.
Save gorkamu/45baf2690e990d059d54c4e2f89610b3 to your computer and use it in GitHub Desktop.
Ejemplo de namespaces en PHP
<?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