79395233

Date: 2025-01-28 21:40:32
Score: 0.5
Natty:
Report link

For some reason, strings in PHP can cause this behaviour, since escaping characters can only happen inside double quotes.

If you have any string, you can overcome this PHP limitation by just using this line of code:

$msg = str_replace('\n', "\n", $msg);

*where msg is your string.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: WilliamX