These escape sequences mean that backslash has a special meaning in strings. To include a backslash itself in a string, you need to escape the backslash with a backslash. For example:
$file = "c:\windows\system.ini";
echo $file; // prints c:windowssystem.ini
$file = "c:\windows\system.ini";
echo $file; // prints c:\windows\system.ini