Source Code:
(back to article)
<?php class User { const MAX_USERS = 100; } echo User::MAX_USERS; // Outputs: 100 ?>
Result:
Report an issue