Skip to content

Instantly share code, notes, and snippets.

@livevasiliy
Last active November 8, 2021 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save livevasiliy/0c05b34d241219a7f25b661f1e43b0df to your computer and use it in GitHub Desktop.
Save livevasiliy/0c05b34d241219a7f25b661f1e43b0df to your computer and use it in GitHub Desktop.
Beautiful display var_export. [EN] | Вывести в отформатированном формате var_export. [RUS]
<?php
/**
* Beautiful display var_export.
* Вывести в отформатированном формате var_export.
*
* @return mixed
*/
function pre_export($value)
{
echo '<pre>';
var_export($value);
echo '</pre>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment