Re: [PHP] basename unix/windows

2002-04-25 Thread Erik Price
On Thursday, April 25, 2002, at 09:54 AM, Matt Friedman wrote: > Replace the "\" with "/" using str_replace or some such function before > using basename. Windows will handle either kind of path. Linux does not > know the "\" as a file path separator. It only knows "/" Just make sure that you

Re: [PHP] basename unix/windows

2002-04-25 Thread Stuart Dallas
ROBERT MCPEAK <[EMAIL PROTECTED]> wrote: > In other words: > > basename(/usr/blah/doh/yuck/wow/abigfile.html) > > resolves to : abigfile.html > > but > > basename(adirectory\onawindowsbox\abigfile.html) > > does not resovle to abigfile.html. > > Does anybody have a workaround for this? Conv

RE: [PHP] basename unix/windows

2002-04-25 Thread Matt Friedman
Replace the "\" with "/" using str_replace or some such function before using basename. Windows will handle either kind of path. Linux does not know the "\" as a file path separator. It only knows "/" Matt Friedman Web Applications Developer www.SpryNewMedia.com -Original Message- From:

Re: [PHP] basename unix/windows

2002-04-25 Thread Alexander Weber
ROBERT MCPEAK wrote: > basename(/usr/blah/doh/yuck/wow/abigfile.html) > > resolves to : abigfile.html > > but > > basename(adirectory\onawindowsbox\abigfile.html) > > does not resovle to abigfile.html. > > Does anybody have a workaround for this? > What about str_replace()? -- PHP General