PHP uses hundreds of constants, so there is no problem, you can use as much as you want.
Just put this and see how many constants php uses:
$consts = get_defined_constants();
print_r($consts);
The result for me on a page containing only these lines showed a total of
990
constants used with default settings and extensions loaded
source
share