Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8123341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:08:52+00:00 2026-06-06T06:08:52+00:00

I seem to be having a problem checking if a string exists in my

  • 0

I seem to be having a problem checking if a string exists in my array. There is probably a really obvious answer to my question do forgive me but I’m new to PHP.

Anyway here is my code:

while($row = mysql_fetch_assoc($result))
{
    $result_array[] = $row;
}

if (in_array("496891", $result_array)) 
{
echo "true";
}
else
{
echo "false";
}

The array looks like this:

Array ( [0] => Array ( [ID] => 496891 ) [1] => Array ( [ID] => 1177953 )) 

My code always echoes false. Anyone know what I’m doing wrong?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T06:08:54+00:00Added an answer on June 6, 2026 at 6:08 am

    You have a nested array and must check against each item like so:

    function in_multidimensional_array($val, $array) {
      foreach($array as $key => $value) {
         if (in_array($val, $array[$key])) {
            return true;
         }  
      }
      return false;
    }
    

    Now you can check if the value 496891 exists using:

    if(in_multidimensional_array('496891', $result_array)) {
       print 'true';
    } else {
       print 'false';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I seem to be having a problem with checking for list equality. In my
I'm really having a problem finding out how to fix this. I cannot seem
I seem to be having a problem writing a string search function. strlength,and strmid
I seem to be having a problem setting the values of an array inside
I seem to be having a problem removing the image in UIScrollView. I was
I seem to be having a problem with my footer growing to 100% width
Hi all I seem to be having a problem with my jQuery mobile script.
Okay, I seem to be having a problem. I'm trying to create a twicker
I'm having a problem in ruby and I can't seem to find the solution
I'm having a problem and can't seem to find the solution.. int linearSearch(nodeptr list,char

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.