You wrote:
> I am trying to receive file names but can't quite figure out the
proper > substr to do it:
>
> jeff.dat
> jeffrey.dat
> chris.dat
> tom.dat
>
> I want to receive the name to the left of the .dat
>
> Jeff
$file = array("jeff.dat", "jeffrey.dat", "chris.dat", "tom.dat");
for($i=0; $i\n
RE: [PHP] substr question...I suppose that $tmpmember=substr($entry, 0,-4); will do
the same? :)
Jeff
- Original Message -
From: Boget, Chris
To: 'Jeff Lewis' ; [EMAIL PROTECTED]
Sent: Thursday, July 26, 2001 3:54 PM
Subject: RE: [PHP] substr question...
>
> I am trying to receive file names but can't quite figure out
> the proper substr to do it:
> jeff.dat
> jeffrey.dat
> chris.dat
> tom.dat
> I want to receive the name to the left of the .dat
$fileName = eregi_replace( "\.dat", "", $fullFileName );
Chris
try
$filename=explode(".", names);
echo $filename[0]
Jeff Lewis wrote:
> I am trying to receive file names but can't quite figure out the proper substr to do
>it:
>
> jeff.dat
> jeffrey.dat
> chris.dat
> tom.dat
>
> I want to receive the name to the left of the .dat
>
> Jeff
>
--
PHP Ge
I am trying to receive file names but can't quite figure out the proper substr to do
it:
jeff.dat
jeffrey.dat
chris.dat
tom.dat
I want to receive the name to the left of the .dat
Jeff
5 matches
Mail list logo