]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
lib/util.php quick function to do var_export($var,true)
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 11 Jan 2016 18:52:54 +0000 (19:52 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 11 Jan 2016 18:52:54 +0000 (19:52 +0100)
Immensely useful when debugging and we want to put quotes around strings,
potentially stopping any "evil logging attacks" (where input data masks
as logging data).

lib/util.php

index 7ebbf42cf601f58feed5b75ed3af1e3f3486ece1..1d973d710031cc56054a4608998319ac5500095f 100644 (file)
@@ -2454,3 +2454,8 @@ function html_sprintf()
     }
     return call_user_func_array('sprintf', $args);
 }
+
+function _ve($var)
+{
+    return var_export($var, true);
+}