Last active
January 3, 2023 14:53
-
-
Save mkolb/2379498 to your computer and use it in GitHub Desktop.
Revisions
-
mkolb revised this gist
Mar 22, 2017 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ <?php ob_start(); var_dump($this); error_log(ob_get_clean()); ?> -
Matt Kolb revised this gist
May 21, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ <?php ob_start(); var_dump($this); $contents = ob_get_contents(); ob_end_clean(); error_log($contents); ?> -
Matt Kolb renamed this gist
May 21, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Matt Kolb created this gist
Apr 13, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ ob_start(); var_dump($this); $contents = ob_get_contents(); ob_end_clean(); error_log($contents);