Your cart is currently empty!
Tag: unset
-
The unsettling Truth about the Global Unset
In PHP, there is a pitfall when using unset on a global variable within the scope of a function or method. When referred to using the global keyword within a function, unset will not destroy the global variable within the global scope. The output produced (1) by the code above is not a warning, but:…