|
|
@ -1,4 +1,23 @@ |
|
|
|
<?php |
|
|
|
function pretty_dump($input) |
|
|
|
{ |
|
|
|
ob_start(); |
|
|
|
|
|
|
|
var_dump($input); |
|
|
|
|
|
|
|
$output = ob_get_contents(); |
|
|
|
ob_end_clean(); |
|
|
|
|
|
|
|
while(preg_match("/^[ ]*[ ]/m", $output) == 1) |
|
|
|
{ |
|
|
|
$output = preg_replace("/^([ ]*)[ ]/m", "$1 ", $output); |
|
|
|
} |
|
|
|
|
|
|
|
$output = nl2br($output); |
|
|
|
|
|
|
|
echo($output); |
|
|
|
} |
|
|
|
|
|
|
|
require(dirname(__FILE__) . "/class.repository.php"); |
|
|
|
require(dirname(__FILE__) . "/class.object.php"); |
|
|
|
require(dirname(__FILE__) . "/class.commit.php"); |
|
|
|