|
Your problem lies in the fact that strings are parsed by PHP's internal engine before they get handed to the date function (or any other function for that matter), so \t gets immediately transformed into a tab.
In order for the date function to actually receive an escaped t (\t), you have to physically force a backslash there ("d M Y \\a\\t g:i A").
|