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

  • Home
  • SEARCH
  • 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 8657171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:27:23+00:00 2026-06-12T15:27:23+00:00

I am trying to add some additional things to an array but am getting

  • 0

I am trying to add some additional things to an array but am getting lost somewhere along the line, I have the following code…..

<?php
    foreach ($search_values as $key => $value)
    {
    echo "'";
    echo $key;
    echo "'";
    echo " => ";
    echo "'";
    echo $value;
    echo "'";
    echo " , ";
    }
?>

Which produces the following….

'beds' => '2' ,
'property_type' => 'for-rent' ,
'zipcode' => 'se19' ,

I then have the following code that generates a map….

<?php
    if ( function_exists( 'pronamic_google_maps_mashup' ) ) {
    pronamic_google_maps_mashup(
    array(
    'post_type' => 'listings' ,
    'posts_per_page' => -1
    )
    );
    }
?>

I need to somehow add the results of echoing the first array into this array, can anyone point me in the right direction?

  • 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-12T15:27:24+00:00Added an answer on June 12, 2026 at 3:27 pm

    No, you don’t need to add the echoed results into the array — you just need to add the array values onto the other array. This can be done with array_merge();

    pronamic_google_maps_mashup(
      // Merge your new array values with $search_values and the output of array_merge()
      // becomes the argument to panoramic_google_maps_mashup()...
      array_merge(array(
       'post_type' => 'listings' ,
       'posts_per_page' => -1
      ), $search_values)
    );
    

    Don’t think of array contents in terms of how they print on the screen, as that will lead you down the wrong path. PHP has many array functions to accomplish all sorts of tasks.

    To get a sense of what your final array will look like, debug it with var_dump():

    var_dump(
      array_merge(array(
           'post_type' => 'listings' ,
           'posts_per_page' => -1
          ), $search_values)
        )
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to add some additional logic to the 'Promoted to front page'
I'm trying to add some additional key/value pairs to an NSMutableDictionary, using: Tag *tag1
I was trying to add some non-production test code by creating a 3rd partial
I am trying to add some logic in this. But I am not sure
I'm using mongoose (on node) and I'm trying to add some additional fields to
I'm trying to add some additional static data to an inbound http message (received
Im trying to add some short file names to a Wise installer to fix
I am trying to add some error detection to a script that is used
I am trying to add some WebAPI support to my asp.net 4 RC site,
I'm trying to add some functionality to dunst, a small notification system. I've never

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.