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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:38:41+00:00 2026-05-30T07:38:41+00:00

Are there any potential pitfalls to using $this->{$name} instead of $this->some_array[$name] in my class

  • 0

Are there any potential pitfalls to using

$this->{$name}

instead of

$this->some_array[$name]

in my class getters and setters?

To clarify, I mean WITHIN the __get and __set methods, not while calling them.

For example:

function __get($name) {
  ...
  return $this->{$name};
}
  • 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-30T07:38:42+00:00Added an answer on May 30, 2026 at 7:38 am

    A getter/setter will only be invoked if the property is not accessible directly. When dynamically setting properties that are not defined in the class itself, the property will be created with public visibility. Which means it’s accessible from anywhere, and the getters/setters will not be invoked when accessing it.

    To illustrate, the below outputs “setting bar” only once:

    class Foo {
    
        public function __set($name, $val) {
            echo "setting $name\n";
            $this->$name = $val;
        }
    
    }
    
    $foo = new Foo;
    $foo->bar = 'baz';
    $foo->bar = 42;
    

    That’s probably not something you want. Furthermore, it allows anybody to change any property of your object, which is probably also not what you want.

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

Sidebar

Related Questions

Are there any potential drawbacks to using DotNetNuke 5.4 with ASP.NET 4.0 vs. ASP.NET
Can Instead Of triggers co-exist with regular triggers? If so, are there any potential
Is there any potential pitfall for using HttpContext.Current.CurrentHandler for runtime view access? public static
Is there any potential problem in setting datacontext as property like this: repository public
Is there any way to check whether a file is locked without using a
Is there any good way to deal with the class renaming refactor from Resharper
Is there any potential gotchas with having both spring mvc and jersey framework in
I am wondering if there is any potential security risk from the following code.
Given the following code. Is there any potential for the first DrawString method to
Is there any potential for issues when having multiple threads read static values or

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.