Last active
April 20, 2022 20:06
-
-
Save vanaf1979/3f5b8af476339ecfd6eea9e939662a21 to your computer and use it in GitHub Desktop.
This file contains 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 characters
<?php | |
/* | |
|-------------------------------------------------------------------------- | |
| Helper functions | |
|-------------------------------------------------------------------------- | |
*/ | |
/** | |
* Dump variable. | |
*/ | |
if ( ! function_exists('d') ) { | |
function d() { | |
call_user_func_array( 'dump' , func_get_args() ); | |
} | |
} | |
/** | |
* Dump variables and die. | |
*/ | |
if ( ! function_exists('dd') ) { | |
function dd() { | |
call_user_func_array( 'dump' , func_get_args() ); | |
die(); | |
} | |
} | |
?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment