Created
December 3, 2016 15:46
-
-
Save gorkamu/199da13787caa67e9edfcddf40f8481f to your computer and use it in GitHub Desktop.
Ejemplo de constante de clase
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 | |
class Gorkamu { | |
const BLOG = 'http://gorkamu.com'; | |
} | |
echo Gorkamu::BLOG; // http://gorkamu.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment