Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 3, 2016 15:46
Show Gist options
  • Save gorkamu/199da13787caa67e9edfcddf40f8481f to your computer and use it in GitHub Desktop.
Save gorkamu/199da13787caa67e9edfcddf40f8481f to your computer and use it in GitHub Desktop.
Ejemplo de constante de clase
<?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