Skip to content

Instantly share code, notes, and snippets.

View markodenic's full-sized avatar
🏠
Working from home

Marko Denic markodenic

🏠
Working from home
View GitHub Profile
if (!function_exists('dd')) {
function dd() {
echo '<pre>';
$vars = func_get_args();
call_user_func_array('var_dump', $vars);
echo '</pre>';
die;
}
}