|
Posted by zorro on 03/04/07 15:23
On Mar 4, 3:25 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> Geoff Berrow wrote:
> > Message-ID: <1173014480.065795.268...@30g2000cwc.googlegroups.com> from
> > Davide contained the following:
>
> >> $file = foo.gif
>
> >> $file = strstr($file, ".");
> >> it prints ".gif"
>
> >> but I cannot print only the name of a file, "foo"
>
> >> what function can do this?
> > $file='foo.gif';
> > echo substr($file, 0, strpos($file,".")); // echoes 'foo'
>
> What about foo.bar.gif?
$pathinfo = pathinfo('/what/ever/foo.bar.gif');
echo str_replace('.'.$pathinfo['extension'], '',
$pathinfo['basename']);
Navigation:
[Reply to this message]
|