Steve,

What version of PHP are you running. in_array is >= 4.0. is_array was in 3.0
so this may be an issue for you.

Gerard

-----Original Message-----
From: Steve Osborne [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 29, 2001 3:08 PM
To: PHP-General (E-mail)
Subject: [PHP] in_array error


Can anyone explain why I am getting the following error?

Fatal error: Call to unsupported or undefined function in_array() in
includes/chinlib21stCentury.inc on line 3131


Code:
if( (is_array($List)) AND (is_array($RemoveList)) )
 {
  $ListItems = count($List);
  sort($List);
  for($ListItem=0; $ListItem < $ListItems; $ListItem++)
  {
   //printf("<br>List value: $List[$ListItem]<br>\n");
   if(!(in_array($List[$ListItem],$RemoveList)) AND (trim($List[$ListItem])
<> "") )     // Line 3131
    $diff[] = $List[$ListItem];
  }
 }elseif($debugit){
  echo "In function ListDiff List and RemoveList are NOT arrays<BR>";
 }
 return ($diff);


Thanks,

Steve Osborne
Database Programmer
Chinook Multimedia Inc.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to