When debugging in Zend Studio 9, if I hover over a variable I can only see a portion of it’s content, up to 1024. I have a var that has a ton of text assigned to it.
How can I view the entire contents of a variable in Zend?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When in the debugging perspective, you should have a ‘Variables’ view and ‘Parameter Stack’ view (usually in the right panel). It should list all variables in current scope (including globals like the $_POST and $_GET arrays). In either of these you should be able to see the full values being stored–you can even drill into arrays and objects.
You won’t have these in the PHP perspective by default, but you can add them by going Window->Show View->Other and selecting them from the ‘debug’ folder.