setInterval(show,1000);
$single_slash = "\\";
echo "single slash: " . $single_slash . "\n";
echo "strip single slash: " . stripslashes($single_slash) . "\n";
$double_slash = $single_slash . $single_slash;
echo "double slash: " . $double_slash . "\n";
echo "strip double slash: " . stripslashes($double_slash) . "\n";
$four_slashes = $double_slash . $double_slash;
echo "four slashes: " . $four_slashes . "\n";
echo "strip four slashes: " . stripslashes($four_slashes) . "\n";
single slash: \
strip single slash:
double slash: \\
strip double slash: \
four slashes: \\\\
strip four slashes: \\