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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:34:18+00:00 2026-05-25T09:34:18+00:00

I am a newbie to PHP and have question which writen in Example_02 class.

  • 0

I am a newbie to PHP and have question which writen in Example_02 class.

<?php

class Entity 
{ 

    private $components = array(); 

    public function add_component(Component $component) 
    { 
        if (in_array($component, $this->components) == false) 
            $this->components[] = $component; 
    } 

    public function get_component(Component $component) 
    { 
        if (in_array($component, $this->components) == true) 
            return $this->components[array_search($component, $this->components)]; 
    } 

} 

class Component 
{ 



} 

class Example_01 extends Component 
{ 

    public $example_var; 

    public function __construct() 
    { 

    } 

} 

class Example_02 extends Component 
{ 

    public function __construct() 
    { 
        // how to get $example_var from Example_01 class? 
    } 

} 

$ent = new Entity(); 
$ent->add_component(new Example_01()); 
$ent->add_component(new Example_02()); 

var_dump($ent); 

?>
  • 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-25T09:34:19+00:00Added an answer on May 25, 2026 at 9:34 am

    An example of 3 classes interlinked together through a base class. Hope im not too wrong. :-s

    <?php 
    /**base class with getters/setters**/
    Class Entity {
        private $vars = array();
    
        public function __set($index, $value){
            $this->vars[$index] = $value;
        }
        public function __get($index){
            return $this->vars[$index];
        }
    }
    
    /*On __construct pass the entity class
    now $entity->first = this object so $entity->first->something() is the internal method
    */ 
    class first {
        private $entity;
    
        function __construct($entity) {
            $this->entity = $entity;
        }
    
        public function something(){
            return 'Test string';
        }
    }
    
    /*On __construct pass the entity class
    now $entity->second = this object so $entity->second->test() is the internal method
    */ 
    class second {
    
        private $entity;
    
        function __construct($entity) {
            $this->entity = $entity;
        }
    
        public function test(){
            echo $this->entity->first->something();
        }
    }
    
    
    //Note the passing of $entity to all the sub classes.
    $entity = new Entity;
    $entity->first = new first($entity);
    $entity->second = new second($entity);
    
    //Go through second class to retrive method reslt from first class
    $entity->second->test(); //result: Test string
    
    print_r($entity);
    /*
    Entity Object
    (
        [vars:Entity:private] => Array
            (
                [first] => first Object
                    (
                        [entity:first:private] => Entity Object
     *RECURSION*
                    )
    
                [second] => second Object
                    (
                        [entity:second:private] => Entity Object
     *RECURSION*
                    )
    
            )
    
    )
    */
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am a newbie in php, mysql. I have written a hello.php script, which
I am newbie to PHP I have written the following program: $address=array('abc@gmail.com','abc@hotmail.com','def@yahoo.com'); foreach($address as
I am a PHP newbie, and I have this question: say I have: a.php:
Another question by a newbie. I have a php variable that queries the database
Another question by a newbie. I have a php variable that queries the database
Sorry, I want to ask a newbie question :) I have PHP scripts like
I'm a newbie and I have a very basic question about PHP arrays Code:
Just a quick newbie PHP syntax question. I have a variable, let's call it
I'm new to PHP and have installed on Linux to boot (also a newbie).
Newbie question. I have a NSMutableArray that holds multiple objects (objects that stores Bezier

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.