php - How to display var_dump(unserialize($data)) each item in newline -


$data=memcache->get($key) if(!empty($data)) {    var_dump(unserialize($data)); } 

how can each item in new line instead of displaying paragraph array.?

echo '<pre>'.var_dump(unserialize($data)).'</pre>'; 

Comments

Popular posts from this blog

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

json - Zend error Connection -

javascript - Trigger mouseenter when an animated element touches mouse -