Print Model Array without Table Information

I’m trying to do something simple to help with debugging outputs of a model being returned and wonder if there was a way to output the results of an active record query without showing all the table relations stuff. I really just want to see the data most all the time and all that just makes it unnecessarily long and hard to figure out what you are getting back. Any suggestions?

I usually do


print_r($model->getAttributes());

I think


print_r($model->attributes);



Should work too.