On a stack trace returned from a PHP application in development, long string arguments to a function are truncated when display on the error page:

Abstract.php(238): Zend_Db_Adapter_Abstract->query('INSERT INTO "tb...', Array)

How can I expand the query argument so the full text is visible? The server is running PHP 5.3.3.

link|improve this question

This is the same question, thanks for the link. I did not come across that when I searched before my post. – Eric Pruitt Dec 22 '10 at 20:59
feedback

1 Answer

up vote 2 down vote accepted

Use debug_backtrace instead. It will give you the whole trace and doesn't trim arguments as far as I know.

On a second thought: You might get away with it by using

try {
   ...
} catch (Exception $e)
   var_dump($e->getTrace());
}

instead.

link|improve this answer
Thanks, the var_dump did the trick. I do not think debug_backtrace will work unless I am misunderstanding it; I cannot modify the file where the exception originates. Is there some way to get var_dump to not produce ellipses? I think it is truncating some data I need. EDIT: The other topic provides an alternative solution that should fix the ellipsis issue. – Eric Pruitt Dec 22 '10 at 20:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.