Skip to content

Instantly share code, notes, and snippets.

View Polmonite's full-sized avatar

Andrea Longo Polmonite

View GitHub Profile
@Polmonite
Polmonite / helpers.php
Last active March 31, 2023 17:21
dump and dd functions
<?php
if (!function_exists('dump')) {
function dump(...$args)
{
$message = implode(
"\n\n",
array_map(
function($value) {
return var_export($value, true);