Skip to content

Instantly share code, notes, and snippets.

@nataliemarleny
Last active July 11, 2020 10:22
Show Gist options
  • Save nataliemarleny/22660848807a8c5b90610e1bf57cd705 to your computer and use it in GitHub Desktop.
Save nataliemarleny/22660848807a8c5b90610e1bf57cd705 to your computer and use it in GitHub Desktop.
Generalised structured var dump for php
function structured_var_dump($arr) {
return '<pre>' . var_export($arr, true) . '</pre>';
}
<?= structured_var_dump($module_selected) ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment