Alternative Print_r()


/ Published in: PHP
Save to your folder(s)

Когда нет под рукой дебаггера, а всё-таки хочется посмотреть дамп массива или объекта,
приходит на помощь print_r() в коде… да вот вид не очень удобный.


Copy this code and paste it in your HTML
  1. function dump($var){
  2. echo '<pre>'.highlight_string("<?php\n".print_r( $var, true)."\n?>", true).'</pre><br />';
  3. }
  4.  
  5. //example
  6. $myvar = array('1','2');
  7. dump($myvar);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.