OOP (course 4): Static methods, Namespaces, Exceptions & Traits! Woh!
The Wonder of Class Constants
  Unlock this challenge
Login Register

Challenge 2 / 3

Suppose you want to change the value of a constant. Check out the following code:

class GasPlanet
{
    const MATERIAL_AMMONIA = 'ammonia';
}
<?php
// ...

GasPlanet::MATERIAL_AMMONIA = 'helium';

Is this legal?

Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.