public static function var_export_html($var, $return = false)
 {
     $html = VariableHelper::var_show($var, null, true);
     if ($return) {
         return $html;
     } else {
         echo $html;
     }
 }