http://www.zend.com/zend/tut/using-strings.php says:
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 -->> @@FILE should contain double backslashes ... Am Mo, 2004-06-07 um 21.01 schrieb Davide Libenzi: > On Mon, 7 Jun 2004, Bogdan Petrica wrote: > > > I made a filter like this > > > > "c:\php\php" "c:\filter.php" "@@FILE" > > > > but my script receives a path without slashes like ?c:Mailrootspool > > > > did anybody knows why? I use XMail 1.18 on my Windows Xp Machine! > > Isn't there anyone knowing PHP on Windows that can answer this? This is > the second or third time this topic shows up. > > > > - Davide > > - > To unsubscribe from this list: send the line "unsubscribe xmail" in > the body of a message to [EMAIL PROTECTED] > For general help: send the line "help" in the body of a message to > [EMAIL PROTECTED] - To unsubscribe from this list: send the line "unsubscribe xmail" in the body of a message to [EMAIL PROTECTED] For general help: send the line "help" in the body of a message to [EMAIL PROTECTED]
