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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:43:36+00:00 2026-05-26T01:43:36+00:00

I have seen some code like below, and it is strange that the __get

  • 0

I have seen some code like below, and it is strange that the __get method has been called twice, why?

class Foo {
    private $bar;

    function __get($name){
        echo "__get is called!";
        return $this->$name;
    }

    function __unset($name){
        unset($this->$name);
    }
}
$foo = new Foo;
unset($foo->bar);
echo $foo->bar;

Attention: unset($foo->bar) will not call the __get.

  • 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-26T01:43:36+00:00Added an answer on May 26, 2026 at 1:43 am

    For me, it looks like a bug. Put some debugging code (the following) and see the result:

    <?php
    
    class Foo {
        private $bar;
    
        function __get($name){
            echo "__get(".$name.") is called!\n";
            debug_print_backtrace();
            $x = $this->$name;
            return $x;
        }
    
        function __unset($name){
            unset($this->$name);
    
            echo "Value of ". $name ." After unsetting is \n";
            echo $this->$name;
            echo  "\n";
        }
    }
    echo "Before\n";
    $foo = new Foo;
    echo "After1\n";
    unset($foo->bar);
    echo "After2\n";
    echo $foo->bar;
    echo "After3\n";
    echo $foo->not_found;
    ?>
    

    The result is:

    Before
    After1
    Value of bar After unsetting is
    __get(bar) is called!
    #0  Foo->__get(bar) called at [E:\temp\t1.php:17]
    #1  Foo->__unset(bar) called at [E:\temp\t1.php:24]
    PHP Notice:  Undefined property: Foo::$bar in E:\temp\t1.php on line 9
    
    After2
    __get(bar) is called!
    #0  Foo->__get(bar) called at [E:\temp\t1.php:26]
    __get(bar) is called!
    #0  Foo->__get(bar) called at [E:\temp\t1.php:9]
    #1  Foo->__get(bar) called at [E:\temp\t1.php:26]
    PHP Notice:  Undefined property: Foo::$bar in E:\temp\t1.php on line 9
    After3
    __get(not_found) is called!
    #0  Foo->__get(not_found) called at [E:\temp\t1.php:28]
    PHP Notice:  Undefined property: Foo::$not_found in E:\temp\t1.php on line 9
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting some strange behavior involving database queries that I have never seen
I have some code that I want to build. The code uses boost::ptr_map class
Today, I have seen some legacy code. In the destructor there is a statement
I have seen some very weird for loops when reading other people's code. I
I have seen the following code: [DefaultValue(100)] [Description(Some descriptive field here)] public int MyProperty{...}
I have seen some C++ classes with a destructor defined as follows: class someClass
I have seen some mails which has HTML content embedded in them. The content
I have written some C++ code that generates a std::vector. I also have a
I have some strange code in a web service. #if SCALABILITYTESTING Random r =
I have seen some code for working with AD in this stackoverflow question 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.