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 7809119
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:19:38+00:00 2026-06-02T03:19:38+00:00

I am working on a system, where I need to compare 2 arrays and

  • 0

I am working on a system, where I need to compare 2 arrays and echo the correct value

[1] => Array
        (
            [Message] => Array
                (
                    [id] => 4f8c74ce-8590-4e8b-a5ba-6f54b2158146
                    [user_id] => 1
                    [to_user_id] => 3
                    [created] => 2012-04-16 21:36:46
                    [last_message_id] => 8
                    [message_count] => 2
                )

            [MessageItem] => Array
                (
                    [0] => Array
                        (
                            [id] => 7
                            [message_id] => 4f8c74ce-8590-4e8b-a5ba-6f54b2158146
                            [user_id] => 1
                            [message] => Whola amigo
                            [read] => 0
                            [created] => 2012-04-16 21:36:46
                        )

                    [1] => Array
                        (
                            [id] => 8
                            [message_id] => 4f8c74ce-8590-4e8b-a5ba-6f54b2158146
                            [user_id] => 1
                            [message] => sdfsdfdsfdsfsdfds
                            [read] => 0
                            [created] => 2012-04-16 21:37:54
                        )

                )

        )

So.. I want to

ECHO ['MessageItem]['message'] WHERE ['MessageItem]['id'] == ['Message]['last_message_id']

Not sure how to achive this using php !?!

Thanks for any and all help!!

-Tom

  • 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-02T03:19:39+00:00Added an answer on June 2, 2026 at 3:19 am

    This simple solution works for the example given:

    $array = array(
                '1' => array(
                    'Message' => array(
                        'id' => '4f8c74ce-8590-4e8b-a5ba-6f54b2158146',
                        'user_id' => 1,
                        'to_user_id' => 3,
                        'created' => '2012-04-16 21:36:46',
                        'last_message_id' => 8,
                        'message_count' => 2
                    ),
                    'MessageItem' => array(
                        array(
                            'id' => 7,
                            'message_id' => '4f8c74ce-8590-4e8b-a5ba-6f54b2158146',
                            'user_id' => 1,
                            'message' => 'Whola amigo',
                            'read' => 0,
                            'created' => '2012-04-16 21:36:46'
                        ),
                        array(
                            'id' => 8,
                            'message_id' => '4f8c74ce-8590-4e8b-a5ba-6f54b2158146',
                            'user_id' => 1,
                            'message' => 'sdfsdfdsfdsfsdfds',
                            'read' => 0,
                            'created' => '2012-04-16 21:37:54'
                        )
                    )
            )
    );
    
    
    
    $searchKey = $array['1']['Message']['last_message_id'];
    
    foreach ($array['1']['MessageItem'] as $messageItemArray) {
        if ($searchKey == $messageItemArray['id']) {
            echo $messageItemArray['message'];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am working a on a permission system. In each page it will need
I am working on a wpf application. Here I need to use System.Windows.Forms.FolderBrowserDialog in
My Case: I'm working on a system that will need to create various X12
I'm working on a compare system just like verizon wirelesses compare system. I'm retrieving
I'm working with a new Entity Framework repository and need System.data.entity.design.dll for using the
Do we still need to implement locking when working with the System.Runtime.Caching.MemoryCache e.g. calling
I'm working on a system where I need to be able to sort a
I'm working on a system that will need to store a lot of documents
I am working with system like CMS that need to versioning documents. what is
I'm working on a system and i have a form where i need to

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.