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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:41:31+00:00 2026-05-20T05:41:31+00:00

Hey guys! I need some help writing a code that creates an array in

  • 0

Hey guys!
I need some help writing a code that creates an array in the format I needed in. I have this long string of text like this -> “settings=2&options=3&color=3&action=save”…etc Now the next thing I did to make it into an array is the following:

$form_data = explode("&", $form_data);

Ok so far so good…I now have an array like so:

Array
(
[0] => settings=2
[1] => options=3
[2] => color=3
[3] => action=save
)
1

Ok now I need to know how to do two things. First, how can I remove all occurences of “action=save” from the array?

Second, how can I make this array become a key value pair (associative array)? Like “settings=>2”?

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-05-20T05:41:31+00:00Added an answer on May 20, 2026 at 5:41 am

    There’s a function for that. 🙂

    parse_str('settings=2&options=3&color=3&action=save', $arr);
    if (isset($arr['action']) && $arr['action'] == 'save') {
        unset($arr['action']);
    }
    print_r($arr);
    

    But just for reference, you could do it manually like this:

    $str = 'settings=2&options=3&color=3&action=save';
    $arr = array();
    foreach (explode('&', $str) as $part) {
        list($key, $value) = explode('=', $part, 2);
        if ($key == 'action' && $value == 'save') {
            continue;
        }
        $arr[$key] = $value;
    }
    

    This is not quite equivalent to parse_str, since key[] keys wouldn’t be parsed correctly. I’d be sufficient for your example though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys I need some help with this: I have two view controllers, let's
hey guys, I need help considering win32com in Python: I have a routine that
Hey guys, i'm having some trouble with this: In the object consumer i need
Hey guys, I need to make a list of some functions that are listed
Hey Guys I would very much appreciate some help with the following. We're using
Hey, i need some help with rails, again ! Last it was about Authlogic..
Hey guys, if anybody can help me out i'd love it... What i have
Hey guys. I'm not much of a programmer, but still need to do some
Hey guys, have a little issue i need to figure out. I created a
Hey guys, I have a little issue here. I need my users to be

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.