|
Posted by oswald on 01/09/06 00:21
David Haynes <david.haynes2@sympatico.ca> napisal(a) w wiadomosci
news:bGfwf.28780$Gt3.12768@fe24.usenetserver.com:
> oswald wrote:
>> ok.. here's the deal...
>>
>> I have an array of file names (read from directory). I'm having
>> trouble working out something like this :
>>
>> user searches the files (array of filenames, say array1) for a
>> specific name (filenames are something like "JOHN SMITH.jpg" - yes,
>> they contain spaces and I can't change that).
>>
>> So - for example - user searches for "SMITH"
>> I'm looking for a script that would find any array objects that
>> contain "SMITH" in array1 and put the corresponding objects (whole
>> file names containg that name) to array2.
>>
>> hope I was clear enough...
>>
> So, what have you tried already?
> This has the characteristics of a homework assignment...
>
> -david-
>
>
yep, i have, tried in_array with no results...
here's the pic of code... i'm a newbie at this...
if (is_dir($dirlist)==true ) {
chdir( $dirlist );
$handle=opendir( ".");
}
$x=0;
$images=array();
while (($file = readdir($handle))!==false) {
$pieces = explode (".", $file);
if ($pieces[0] && $pieces[1]) {
if (($pieces[1]=="gif") || ($pieces[1]=="jpg") || ($pieces[1]=="GIF")
|| ($pieces[1]=="JPG") || ($pieces[1]=="bmp") || ($pieces[1]=="BMP") ||
($pieces[1]=="png") || ($pieces[1]=="PNG")) {
$images[$x]=$file;
$x++;
}
}
}
closedir($handle);
}
else
{
$images = unserialize(base64_decode($myArrayS));
}
echo "";
$players=array();
for ($i=0; $i<sizeof($images); $i++)
{
if (in_array($playername,$images)) { $players[i]= $images[i]; }
echo "Foundnd : <B>".$players[$i]."</B><BR>";
}
--
oswald
gg: 7777 | I deny the current reality and substitute it with my own.
Navigation:
[Reply to this message]
|