Skip to content

Instantly share code, notes, and snippets.

@iamchkchk
Forked from pgmccann/do_var_dump.php
Created January 24, 2018 02:32
Show Gist options
  • Select an option

  • Save iamchkchk/eed30e57d93d879fe2d2ddfcad36f9d2 to your computer and use it in GitHub Desktop.

Select an option

Save iamchkchk/eed30e57d93d879fe2d2ddfcad36f9d2 to your computer and use it in GitHub Desktop.

Revisions

  1. @pgmccann pgmccann created this gist Oct 5, 2015.
    9 changes: 9 additions & 0 deletions do_var_dump.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    <?php

    function do_var_dump($object) {
    echo "<pre>";
    var_dump($object);
    echo "</pre>";
    }

    ?>