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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:40:33+00:00 2026-06-11T11:40:33+00:00

I need to add key and value to an existing array and don’t seem

  • 0

I need to add key and value to an existing array and don’t seem to be able to get it together.

My existing array when printed looks like this:

Array
(
    [0] => stdClass Object
        (
            [id] => 787
            [name] => Steve
            [surname] => Ryan
            [email] => Steve@hotmail.com
        )

    [1] => stdClass Object
        (
            [id] => 1057
            [name] => Peter
            [surname] => Smith
            [email] => Peter.Smith@yahoo.com
        )

    [2] => stdClass Object
        (
            [id] => 1058
            [name] => Chris
            [surname] => Gill
            [email] => chrisgill@gmail.com
        )

)

I need to add a few details to this array on the fly from a string that looks like this:

Topher:Topher1234@mac.com
Elvis:elvispresley@gmail.com
Marilyn:marilyn.monroe@hotmail.com

Each entry is seperated by a new line and the name and email address is seperated by a :

So in the end my array would look like this:

Array
(
    [0] => stdClass Object
        (
            [id] => 787
            [name] => Steve
            [surname] => Ryan
            [email] => Steve@hotmail.com
        )

    [1] => stdClass Object
        (
            [id] => 1057
            [name] => Peter
            [surname] => Smith
            [email] => Peter.Smith@yahoo.com
        )

    [2] => stdClass Object
        (
            [id] => 1058
            [name] => Chris
            [surname] => James
            [email] => chrisjames@gmail.com
        )
    [3] => stdClass Object
        (
            [id] => 
            [name] => Topher
            [surname] => 
            [email] => Topher1234@mac.com
        )
    [4] => stdClass Object
        (
            [id] => 
            [name] => Elvis
            [surname] => 
            [email] => elvispresley@gmail.com
        )
    [5] => stdClass Object
        (
            [id] => 
            [name] => Marilyn
            [surname] => 
            [email] => marilyn.monroe@hotmail.com
        )

)

I looked at array_push but couldn’t work it out.

Any help with this is very much sppreciated.

C

  • 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-11T11:40:34+00:00Added an answer on June 11, 2026 at 11:40 am

    Using PHP Arrays’ [] operator is the same as pushing a value to the end of an array.

    $arr[] = 'new element in array';
    

    A full solution to your example would be

    $CharacterInput = <<<EOT
    Topher:Topher1234@mac.com
    Elvis:elvispresley@gmail.com
    Marilyn:marilyn.monroe@hotmail.com
    EOT;
    
    $lines = explode("\n", $CharacterInput);
    
    $People = array();
    
    foreach($lines as $line) {
        list($name, $email) = explode(':', $line);
    
        $entry = array(
            'id' => null,
            'name' => $name,
            'surname' => null,
            'email' => $email,
        );
    
        // cast the entered data array to an object,
        // which is explicitly stated in the example output.
        // For plain arrays, remove the following line.
        $entry = (object) $entry;
    
        $People[] = $entry;
    }
    
    print_r($People);
    

    which outputs

    Array
    (
     [0] => stdClass Object
     (
     [id] => 
     [name] => Topher
     [surname] => 
     [email] => Topher1234@mac.com
     )
    
     [1] => stdClass Object
     (
     [id] => 
     [name] => Elvis
     [surname] => 
     [email] => elvispresley@gmail.com
     )
    
     [2] => stdClass Object
     (
     [id] => 
     [name] => Marilyn
     [surname] => 
     [email] => marilyn.monroe@hotmail.com
     )
    
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array that I need to add some key/value pairs too but
I just need to be able to insert a key/value pair into an object
I need to add key/value to queryset per each object based on stuff in
I'm working on an iPhone app and I need to add a new key-value
I need to add a key with a value that increases by one for
I need to add a unique key to a form in a hidden input,
I can't access a element with its href. Like this example, i need add
how to add duplicate keys to dictionary i.e i have already added the key,value
i need a Key/Value List with more than one Value per Key! What i
I need to add key/object pairs to a dictionary, but I of course need

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.