how do I reverse the direction of a slash? I am trying to reverse the slashes in the directory path of a windows system.

I have tried so many things but then when I actually test it to make sure it works, it always fails, so I decided to try it via brute force. Again this fails because of special symbols, take for example:

for ($i=0; $i<strlen($file_dir); $i++)
{
	if ($file_dir{$i} == "\\")
	{
		$file_dir{$i} = "/";
	}
}

when I finally tried this method it works wonderfully until I hit some special cases like when I have a folder called:
C:\temp\2004
it turns it into (a tab and some weird symbol in there):
C: emp€4
but I really want it to look like:
C:/temp/2004

Recommended Answers

All 4 Replies

You may want to use addslashes and stripslashes functions.
For example: $file_dir = addsashes($file_dir);
so you will now get symbols (\t is tab, \n is new line etc)

You may try str_replace function to change the direction of the slashes.
.

all that does is add an escape slash, I didn't want to do that at all. I want to reverse the direction of the slash. I already know about addslashes/stripslashes and magic_quotes and all that jazz... I want to be able to reverse the direction of the slash

Then str_replace function is the solution... I guess

try this:

$newphrase = str_replace('\\', '/', $phrase);

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.