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
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
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:
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
Oh yes, I dont like warnings. Thanks for pointing that out
Renze Munnik wrote:
> On Mon, Aug 20, 2001 at 03:42:34PM -0400, Gerard Samuel wrote:
>
>>$file = basename ($path);
>>$file = $file.php3;
>>
>>
>
> You might want to consider using,
>
> $file = basename ($path);
> $file = "$file.php3";
On Mon, Aug 20, 2001 at 03:42:34PM -0400, Gerard Samuel wrote:
> $file = basename ($path);
> $file = $file.php3;
>
You might want to consider using,
$file = basename ($path);
$file = "$file.php3"; // <-- !
instead, if you don't like warnings.
$file = $file.php3
isn't the way to do
$file = basename ($path);
$file = $file.php3;
Jeremy Morano wrote:
> Hello,
>
> Can someone please show me how to use basename() correctly?
> This is what I am doing:
>
> $file = basename ($path);
> $file = basename ($path,".php3");
>
> This is the error I'm gettig:
>
> Warning: Wrong paramet
7 matches
Mail list logo