RE: [PHP] in_array error

2001-11-29 Thread Gerard Onorato

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(brList 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 arraysBR;
 }
 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]




Re: [PHP] in_array error

2001-11-29 Thread Steve Osborne

I'm using php 4 on my machine, however the server that I am testing on only
supports php3

- Original Message -
From: Gerard Onorato [EMAIL PROTECTED]
To: Steve Osborne [EMAIL PROTECTED]; PHP-General
(E-mail) [EMAIL PROTECTED]
Sent: Thursday, November 29, 2001 11:29 AM
Subject: RE: [PHP] in_array error


 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(brList 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 arraysBR;
  }
  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]




Re: [PHP] in_array error

2001-11-29 Thread Fred

You will not be able to use this and many other functions on a php3 only
machine.  For your convenience, all of the function references in the manual
state which versions of php support them and which do not.

Fred

Steve Osborne [EMAIL PROTECTED] wrote in message
008401c17916$dd87f200$[EMAIL PROTECTED]">news:008401c17916$dd87f200$[EMAIL PROTECTED]...
 I'm using php 4 on my machine, however the server that I am testing on
only
 supports php3

 - Original Message -
 From: Gerard Onorato [EMAIL PROTECTED]
 To: Steve Osborne [EMAIL PROTECTED]; PHP-General
 (E-mail) [EMAIL PROTECTED]
 Sent: Thursday, November 29, 2001 11:29 AM
 Subject: RE: [PHP] in_array error


  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++)
{
 file://printf(brList 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 arraysBR;
   }
   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]