Skip to content

Instantly share code, notes, and snippets.

@aknosis
Created June 29, 2011 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aknosis/1054257 to your computer and use it in GitHub Desktop.
Save aknosis/1054257 to your computer and use it in GitHub Desktop.
Check if a class constant exists in PHP
<?php
if(defined('className::CONSTANT_NAME')){
//defined
}else{
//not defined
}
@kriit24
Copy link

kriit24 commented Aug 13, 2016

not working with array values

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment