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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:57:30+00:00 2026-06-14T14:57:30+00:00

I have been told that a class cannot be defined within a class in

  • 0

I have been told that a class cannot be defined within a class in PHP. However, in my own example this seems to work which has me confused:

class_test.php:

require('class_1.php');
new class_1
//Need $missing_variable here.

class_1.php

class class_1{
    public function function_1(){
        function callback_function(){
            echo "A Callback";
            $missing_variable = "Where Did I Go?";
        }
        require('class_2.php');
        new class_2('callback_function');
    }
    public function __construct(){
        $this->function_1();
    }
}

class_2.php

class class_2{
    public function __construct($callback){
        echo "Hello World - ";
        call_user_func($callback);
    }
}

Loading class_test.php prints out

Hello World - A Callback

Question: How do I define $missing_variable such that I can get it where I need it?


In case anyone in the future has a similar problem, however unlikely that may be, I want to link to the codepad from below that shows the $missing_variable echo’d from outside the classes:

http://codepad.org/tRk0XWG7

Thanks again everyone.


Note: This is a follow up.

  • 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-14T14:57:31+00:00Added an answer on June 14, 2026 at 2:57 pm

    You would return $missing_variable in a few places. See below. (This isn’t the only way to do it, mind you)

    http://codepad.org/tf08Vgdx

    <?
    class class_2{
        public function __construct($callback){
            echo "Hello World - ";
            $missing = $callback();
            $this->missing = $missing;
        }
    }
    class class_1{
        public function function_1(){
            function callback_function(){
                echo "A Callback. ";
                $missing_variable = "Where Did I Go?";
                return $missing_variable;
            }
            $class2 = new class_2('callback_function');
            return $class2->missing;
        }
        public function __construct(){
            $this->missing = $this->function_1();
        }
    }
    
    $class = new class_1();
    
    echo $class->missing;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Recently I have been told that static class/methods are evil. Take for example my
I'm confused about this. Most of us have been told that there isn't any
I have been told that Eclipse is a good tool for programming in certain
I am building a web application and have been told that using object oriented
I have previously been told that I should always use Randomize() before I use
I have been told to edit this file in Sharepoint Designer: /_layouts/KWizCom_WikiPlus/CreateNew.aspx I found
I've been trying this: NSNumberFormatter *testNumber=[NSNumberFormatter new]; if (![testNumber numberFromString:someNSString]) I have been told
Let's say we have a class that looks like this: class A { public:
I have been told and have read that SWT Objects must be explicitly disposed
I have been told that to access a UITextField in the setup i have

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.