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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:30:34+00:00 2026-05-16T02:30:34+00:00

I want to have a static method in a parent class that creates instances

  • 0

I want to have a static method in a parent class that creates instances of whatever subclass i call this method on.

An example to make this more clear:

class parent {
    public static method make_objects($conditions){
        for (...){
            // here i want to create an instance
            // of whatever subclass i am calling make_objects on
            // based on certain $conditions
        }
    }
}

class sub extends parent{
    ...
}

$objects = sub::make_objects($some_conditions);
  • 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-16T02:30:35+00:00Added an answer on May 16, 2026 at 2:30 am

    As of php 5.3 you can use the static keyword for this

    <?php
    class A {
      public static function newInstance() {
        $rv = new static();  
        return $rv;
      }
    }
    class B extends A { }
    class C extends B { }
    
    $o = A::newInstance(); var_dump($o);
    $o = B::newInstance(); var_dump($o);
    $o = C::newInstance(); var_dump($o);
    

    prints

    object(A)#1 (0) {
    }
    object(B)#2 (0) {
    }
    object(C)#1 (0) {
    }
    

    edit: another (similar) example

    <?php
    class A {
      public static function newInstance() {
        $rv = new static();  
        return $rv;
      }
    
      public function __construct() { echo " A::__construct\n"; }
    }
    class B extends A {
      public function __construct() { echo " B::__construct\n"; }
    }
    class C extends B {
      public function __construct() { echo " C::__construct\n"; }   
    }
    
    $types = array('A', 'B', 'C');
    foreach( $types as $t ) {
      echo 't=', $t, "\n";
      $o = $t::newInstance();
      echo '  type of o=', get_class($o), "\n";
    }
    

    prints

    t=A
     A::__construct
      type of o=A
    t=B
     B::__construct
      type of o=B
    t=C
     C::__construct
      type of o=C
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I basically want to have a static method in my AR class to
I have this getView method inside my ListViewAdapter: public static class ViewHolder{ public TextView
I have 1 abstract class that is calling a static method which up until
I have code that looks like this: Class Parent: def someMethod(self): return 42 Class
I have a static class in a shared project, which I want to extend
I have a static variable partner in the class. And I want to set
I have created a public static class utils.cs I want to use it in
I want to create a static class in PHP and have it behave like
If I have a collection of static constants that I want to declare centrally
I have two classes, and want to include a static instance of one class

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.