My script has variables that store absolute paths, and runs on a Windows server. When a path contains the string "\t", PHP reads it as a tab:
$path = "c:\webdocs\mysite\temp";
echo $path; // Prints "c:\webdocs\mysite emp"
I can remedy this by placing another slash before 'temp', but this seems counterintuitive. Is that the best way to handle this?