|
Posted by Jerry Stuckle on 03/04/07 14:25
Geoff Berrow wrote:
> Message-ID: <1173014480.065795.268720@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?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|