Recent content by tekmunkey

  1. T

    Basic Troubleshooting aka Debugging in PHP

    I know that, at the time of this post, there are plenty of Integrated Development Environment (IDE) options available for PHP. These help with troubleshooting and debugging your code, but most of them require you to install the PHP Runtime Engine on your development system and all of them do...
  2. T

    PHP 7 doing weird stuff with variables

    PHP 7, Apache 2, Debian 9 amd64 A few days ago I discovered that a classless function was not always but occasionally not seeing variables defined in the same file. <?php $someArr = array( 'def0' => 'val0', 'def1' => 'val1', 'def2' => 'val2' ); function SomeFunc( $someParam )...
Back
Top