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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:39:57+00:00 2026-05-27T11:39:57+00:00

I apologize, I have dabbled with some PHP, but never done anything serious until

  • 0

I apologize, I have dabbled with some PHP, but never done anything serious until now.

Basically, I have something like this:

class MyClass
{
    function _construct($var1, $var2)
    {
        //property assignments
    }
}

function doStuff($array)
{
    //do stuff to $array
}

$myArray = array();
$myVar1 = "foo";
$myVar2 = "bar";
$myVar3 = "test"
$myVar4 = "aaaaa"
//etc...

What I want to do is create an instance of MyClass and store it into $myArray. I know I can do the following:

$classInstance = new MyClass($myVar1, $myVar2);
$myArray[] = $classInstance
$anotherInstance = new MyClass($myVar3, $myVar4);
$myArray[] = $anotherInstance
//etc...

This process will be done multiple times (with no loops) sequentially. Once I have done this multiple times, I will be doing the following:

doStuff($myArray);

Inside this function, I will be looping through with a foreach, etc. This is going to be tedious. What I want to know, is there some way that I can do something like (I know this isn’t proper syntax):

$myArray[] = new MyClass($myVar1, $myVar2);
$myArray[] = new MyClass($myVar3, $myVar4);
//etc...

doStuff($myArray);

Any help would be appreciated. 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-27T11:39:57+00:00Added an answer on May 27, 2026 at 11:39 am

    The syntax $myArray[] = new MyClass($myVar3, $myVar4); is valid already. You can do exactly as you want to:

    $arr = array();
    $arr[] = new stdClass;
    $arr[] = new stdClass;
    $arr[] = new stdClass;
    $arr[] = new stdClass;
    $arr[] = new stdClass;
    
    var_dump($arr);
    array(5) {
      [0]=>
      object(stdClass)#1 (0) {
      }
      [1]=>
      object(stdClass)#2 (0) {
      }
      [2]=>
      object(stdClass)#3 (0) {
      }
      [3]=>
      object(stdClass)#4 (0) {
      }
      [4]=>
      object(stdClass)#5 (0) {
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I apologize in advance, I am a PHP noob! I have form with some
I apologize if my question is simple, but I have done a lot of
Note: Now that I've typed this out, I have to apologize for the super
I apologize in advance for the rambling nature of this question, but I have
Here is what I have so far, I apologize for the length but this
I apologize if this is a really beginner question, but I have not worked
I apologize in advance for this somewhat ignorant question, but I have researched this
This is something I've been stuck on for a while now, and I have
I apologize that this is a dumb question, but I have been pulling my
I apologize for asking such a generalized question, but it's something that can prove

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.