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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:05:45+00:00 2026-06-03T12:05:45+00:00

Trying to set an array and a count, which are both static members, by

  • 0

Trying to set an array and a count, which are both static members, by referencing them after getting the type of the current class. The intention is to have a global list of all items of a particular type that I have loaded, but I would like them to be split up into the static properties for each particular class. The issue is that I will be inheriting a few classes from a base class, but I want the static property in the ‘child’ class to get appended to.

Here’s what I’m shooting for, give or take:

$Class = get_class($this);
($Class)::$List[($Class)::$Count++] = $this;
  • 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-03T12:05:46+00:00Added an answer on June 3, 2026 at 12:05 pm

    In PHP 5.3 and later, you can use late static binding to access overridden static variables. The short version is that you use static rather than self or the class name when accessing static variables. For example:

    <?php
    abstract class A {
        public function __construct() {
            static::$List[] = $this;
        }
    }
    
    class B extends A { 
        public static $List = array();
    }
    
    class C extends A {
        public static $List = array();  
    }
    $b = new B();
    $c1 = new C();
    $c2 = new C();
    $c3 = new C();
    
    echo '#objects of class C: ', count(C::$List), "\n";
    var_dump(C::$List);
    

    Keep in mind that if a child class defines a constructor, it must explicitly call the parent’s constructor.

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

Sidebar

Related Questions

I'm trying to use an array to set the where parameters for a Zend
Im trying set the single table inheritance model type in a form. So i
I am trying to take in array which contains some integer values/string values from
I am trying to add animation for UIImages which are added in an array.
After many hours of messing about and trying to set up what should be
Trying to learn about php's arrays today. I have a set of arrays like
I'm trying to merge two arrays for the values of array1 that are set
Trying to set it so if a certain condition is met then one of
Trying to set up a dependency in C++ with a parent-child relationship. The parent
Trying to set up a new project, and running into a weird issue. I

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.