| PHP |
|---|
| public static function ShowWhiteSpace(string $text) |
| PHP |
|---|
// Returns a string that shows the whitespace.
private static function ShowWhiteSpace()
{
$result = LJC::ShowWhiteSpace("This is a line.\n");
$compare = "This is a line.\\n";
LJC::OutputLogCompare("ShowWhiteSpace()", $result, $compare);
}
|