I have a class that benefits from the use of constants in its internal implementation, but I would like to limit visibility of these constants. Why doesn't PHP permit private constants? Is there another way to achieve this or is PHP trying to discourage some type of design misstep I am ignorant of?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use Private static properties in that case you will have the same variable throughout all objects and if you want to extend its scop to nested you can expose getter method to get its value and restrict variables settings. |
|||
|
|