Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active April 20, 2022 20:06
Show Gist options
  • Save vanaf1979/3f5b8af476339ecfd6eea9e939662a21 to your computer and use it in GitHub Desktop.
Save vanaf1979/3f5b8af476339ecfd6eea9e939662a21 to your computer and use it in GitHub Desktop.
<?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