Ejemplo n.º 1
0
 public static function var_export_html($var, $return = false)
 {
     $html = VariableHelper::var_show($var, null, true);
     if ($return) {
         return $html;
     } else {
         echo $html;
     }
 }
 /**
  * Mass-populates instances of this class with a given set of models.
  *
  * @param array $models
  *
  * @return array
  */
 public static function populateVariables($models)
 {
     return VariableHelper::populateVariables($models, get_called_class());
 }