uopz_redefine
uopz_redefine
Redefine a constant
bool **uopz_redefine** string $constant mixed $value
bool **uopz_redefine** string $class string $constant mixed $value
Redefines the given as
constant``value
classThe name of the class containing the constant
constantThe name of the constant
valueThe new value for the constant, must be a valid type for a constant variable
return.success
Voorbeeld: example
<?php
define("MY", 100);
uopz_redefine("MY", 1000);
echo MY;
?>
1000