Skip to content

Instantly share code, notes, and snippets.

@andreymukha
Created February 14, 2017 04:57
Show Gist options
  • Save andreymukha/67ebe0e00ad21e90c2c8c5627d3fb8bd to your computer and use it in GitHub Desktop.
Save andreymukha/67ebe0e00ad21e90c2c8c5627d3fb8bd to your computer and use it in GitHub Desktop.
Dump
<?php
/**
* Выводит информацию о переменной
*
* @param mixed $obj
* @return string
*/
function dump($obj)
{
if (is_array($obj) || is_object($obj)) {
$obj = print_r($obj, true);
}
echo '<pre>' . htmlentities($obj, ENT_QUOTES) . "</pre><br>\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment