From d143bfb2c9741d8f82c78ec97472c7648a750eed Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 17 Mar 2011 17:01:31 +0100 Subject: [PATCH] helper fun to inspect strings --- planetlab/includes/plc_functions.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/planetlab/includes/plc_functions.php b/planetlab/includes/plc_functions.php index 43a384d..a51bf59 100644 --- a/planetlab/includes/plc_functions.php +++ b/planetlab/includes/plc_functions.php @@ -431,6 +431,16 @@ function plc_debug ($message,$object) { print ""; } +function plc_debug_txt ($message,$txt) { + print "
" . $message . "
";
+  $txt=str_replace(" ","<SPC>",$txt);
+  $txt=str_replace("\t","<TAB>",$txt);
+  $txt=str_replace("\n","<LF>",$txt);
+  $txt=str_replace("\r","<CR>",$txt);
+  print $txt . "<EOF>";
+  print "
"; +} + $plc_prof_start=0.; $plc_prof_time=0.; $plc_prof_counter=0; -- 2.43.0