Once a constant is defined in PHP using define(), it cannot be changed or undefined during script execution. This is the fundamental purpose of constants - to provide immutable values that remain consistent throughout the program. Option B is wrong because constants cannot be undefined either. Options C and D are incorrect because constants cannot be changed at all after definition. Constants are global in scope and their value is fixed for the entire script runtime.