What does “1” mean at the end of a php print_r statement?

You probably have echo print_r($view). Remove the echo construct. And… what need do you have to parse its output? There are certainly much better ways to solve your problem.

Leave a Comment