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

  • Home
  • SEARCH
  • 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 6716677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:45:44+00:00 2026-05-26T08:45:44+00:00

The parent class has a constructor like this: function CD_Log( $id = false )

  • 0

The parent class has a constructor like this:

function CD_Log( $id = false ) {
    $this->__construct( $id );
}

function __construct( $id = false ) {
    global $cd;

    if ( !empty( $id ) ) {
        $this->id = $id;
        $this->populate();
    }
}

In the extended Class, I want to save some of parent’s var and child’s var to a different place, also won’t use the populate() function. Other than that, the child is constructed the same way as parent. Should I write a contructor for the child?

  • 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-26T08:45:44+00:00Added an answer on May 26, 2026 at 8:45 am

    If you are following OOP as you are now, you should remove the global call for $cd, set this as a member var of either the parent or child.

    Constructors, as I have seen them commonly used are normally called when you instantiate the object, not through another method of the same class, like the method CD_Log is doing.

    For example:

    $myCdObject = new MyCdClass(); // Automatically calls constructor
    $myCdObject->Cd_Log($string);
    

    With the above example you are ensure the CD_Log method is only dealing with log logic. Unless you make CD_Log a static function, then you can instantiate the class within:

    public static function CD_Log($id)
    {
        $myCdObject = MyCdClass(); // Automatically calls constructor
    
        // Continue with `log` logic
    }
    

    To answer your question you probably want a constructor in the child class, which will call the parent constructor explicitly:

    class parent
    {
        public function __construct($id)
        {
            $this->id = $id;
        }
    }
    
    class child extends parent
    {
        public function __construct($id)
        {
            // Going to take advantage of shared logic
            parent::__construct($id);
    
            // Now lets do some child class specific stuff
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Example: I have a class called ParentClass. ParentClass has a constructor like this: function
What I'd like is for this class class Car { public function __construct(Engine $engine,
I have a class in PHP like so: class ParentClass { public function __construct($arg)
I have a class like this: class A { public $var = ; function
I have a abstract Parent class that has multiple children. I'd like the child
I have a parent class: Abstract Class Base { function __construct($registry) { // stuff
I want a pure virtual parent class to call a child implementation of a
I want to call a redefined private method from an abstract parent class. I
If I have a class (like below) and in a function I set a
I have 4 classes, one Database helper and 3 defined like this: abstract 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.