예제 #1
0
파일: out_class.php 프로젝트: Jaymon/out
 /**
  *  set whether out should bother printing objects or just print what type of object they are
  * 
  *  this is to limit frustration when you are working with a lot of huge objects which are impractical to
  *  print out, if you still need to see what is in the object then use {@link i()} as that just prints
  *  info about the object and always works
  *  
  *  @param  boolean                  
  */
 static function setPrintObject($bool)
 {
     self::$PRINT_OBJECTS = $bool;
 }