Your cart is currently empty!
Tag: programming
-
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:…
-
Getting started with Eclipse and Xdebug for PHP and WordPress Development
The quest to find the easiest way to debug PHP is something most PHP and WordPress developers suffer with. Though some developers argue that logging messages to a log file can be a way forward, I must admit, it turns out to be overly complicated when dealing with a complex project, where tracking the execution…