How can I create indentifiers PHP? All bitvalues are discarded when I try to define them with define() with a leading enabled bit.
define ("USR_ADMIN", bindec("10000001"));
// this works
define ("USR_ADMIN", bindec("00000001"));
// this do not work, but this is what I want to do