On Thu, Apr 11, 2013 at 1:37 PM, Russell Brackett
wrote:
> I need help with this code to echo all items in the general database and not
> just the fields I'm searching for.
>
>
> // filter function
> function cleanInput($input) {
>
> $search = array('OEM Name, Category, OEM N
I need help with this code to echo all items in the general database and not
just the fields I'm searching for.
newFindRequest($layoutName);
$findSerial->addFindCriterion('OEM Name', $cleanInput);
// Add 2nd request for category
$findDesc = $f
> > How do I search an array?
> >
> > For example if I want to know if $array contains "1"...
> >
> > Regards,
> >
> > Matthew Delmarter
> >
>
This is bad, use in_array() or array_search().
in_array() returns TRUE if element is found in array.
array_search returns the key of matching element, FALS
Sorry, mixed this up with your other query;
For this
If(in_array(1, $array)) {
}
Warren Vail
-Original Message-
From: Warren Vail [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 30, 2001 9:57 PM
To: Matthew Delmarter; PHP Mailing List
Subject:RE: [PHP] search array for
Subject: [PHP] search array for value
How do I search an array?
For example if I want to know if $array contains "1"...
Regards,
Matthew Delmarter
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [E
In a message dated 7/31/01 12:32:59 AM Eastern Daylight Time,
[EMAIL PROTECTED] writes:
> How do I search an array?
>
> For example if I want to know if $array contains "1"...
>
> Regards,
>
> Matthew Delmarter
>
for ($i = 0; $i < count($array); $i++)
{
if ($array[$i] == 1) {
How do I search an array?
For example if I want to know if $array contains "1"...
Regards,
Matthew Delmarter
--
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-ma
7 matches
Mail list logo