From d95ab5019c2fb2f8a372ae858cbcaaa262351b36 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Fri, 28 Jun 2013 17:25:12 +0000 Subject: handle generators in ED() --- it_debug.class | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/it_debug.class b/it_debug.class index 4c5af95..359d703 100644 --- a/it_debug.class +++ b/it_debug.class @@ -122,6 +122,12 @@ static function dump($args) foreach ($args as $arg) { $var = array_shift($argnames); + if (is_a($arg, 'generator')) { + $origarg = $arg; + $arg = array(); + foreach ($origarg as $a) + $arg[] = $a; + } $item = gettype($arg) == 'resource' || is_array($arg) && isset($arg['GLOBALS']) || is_object($arg) && is_a($arg, "SimpleXMLElement") ? trim(print_r($arg, true)) : trim(var_export($arg, true)); # Replace PHP 5 var_export object representation by old style -- cgit v1.2.3