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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:11:02+00:00 2026-06-09T13:11:02+00:00

I have data here: Array ( [1] => Array ( [SiteID] => 1 [OwnerAID]

  • 0

I have data here:

Array
(
[1] => Array
    (
        [SiteID] => 1
        [OwnerAID] => 1

    )

[3] => Array
    (
        [SiteID] => 3
        [OwnerAID] => 1

    )

[6] => Array
     (
        [SiteID] => 6
        [OwnerAID] => 2

     )
    )

Now, I need to group the OwnerAID into two categories: the first one is OwnerAID owning only one SiteID and the second one is OwnerAID owning more than 1 SiteID.

I’ve tried to make a program and do some research, but the output of my code is wrong.

Please see my code:

       public function groupIndividualAndAggregateSites()
    {

    $arrays = array();
        foreach($this->combined as $key => $key_value)
        {
            $SiteID = "";

        if ($SiteID == "") {

            $SiteID=array($key_value['SiteID']); }

           else {
                   $SiteID = array_merge((array)$SiteID, (array)$key_value['SiteID']);

                   $SiteID = array_unique($SiteID);

                }

       } if ($SiteID != "") {

       $arrays = array('AID'=>$key_value['AID'], 'Sites' => $SiteID);
     }
        print_r($arrays);

    }

The result should be shown like this:

 Array( 
        [1] => Array

      ( [Sites] => Array ([0] => 1, [1] => 3)))

 Array( 
        [2] => Array

      ( [Sites] => Array ([0] => [6]))
  • 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-09T13:11:03+00:00Added an answer on June 9, 2026 at 1:11 pm

    What you should go for is array:

    $owners = array(
    owner_1 => SiteID1, // int Only one site
    owner_2 => array (SiteID2,SiteID3), // array Multiple sites
    );
    

    and later use the array $owners like:

    echo (is_array($owners[$owner_1]) ? 'Has multiple sites' : 'has one site';
    

    Thats the basic idea of small memory footprint.

    Example, not tested.

    public function groupIndividualAndAggregateSites() {
      $owners = array();
      foreach($this->combined as $key => $value) {
        $owner_id = $value['OwnerAID'];
        $site_id = $value['SiteID'];
    
        if(array_key_exists($owner_id,$owners)) {
          // He has one or more sites already?
          if(is_array($owners[$owner_id]){
            array_push($owners[$owner_id],$site_id);
          } else {
          // User already has one site. Lets make an array instead and add old and new siteID
            $old_site_id = $owners[$owner_id];
            $owners[$owner_id] = array($old_site_id,$owner_id);
          }
        } else {
          $owners[$owner_id] = $site_id;
        }
    return $owners;    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an data array(All value of Array A are string ) : Here
So here's the problem. I have data in a MySQL DB as text. The
I have a outsource data from : http://example.com/data/news.json Here is the example result after
Here's the problem: I have a data-bound list of items, basically a way for
Here's the issue: I have 2 data contexts that I would like to do
I have two tables, images and image_data and here is an example of my
I have hourly weather data. I've seen the function examples from here: http://casoilresource.lawr.ucdavis.edu/drupal/node/991 I'm
I'm learning assembly and I have a very basic loop here segment .data msg:
I have used the method described here to localize my data annotation messages and
I have been running around here and there on NoSQL big data storage technologies.

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.