Destroy defined key with define function

php, unset

Solution

Constants created with `define()` can't be undefined once created.

Problem

How I can destroy an const? I tried unset( KEY ), but not work. ``` <?php define('KEY', 'value'); echo KEY; //output value unset( KEY ); //no work ?> ```

Original source