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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:41:50+00:00 2026-05-27T23:41:50+00:00

Just to clarify, I mean something like: class foon { private $barn = null;

  • 0

Just to clarify, I mean something like:

class foon {
   private $barn = null;

   public function getBarn() {
      if (is_null($this->barn)) {
         $this->barn = getBarnImpl();
      }
      return $this->barn;
   }
}

This is especially nice when you don’t always need getBarn, and getBarn is particularly expensive (e.g. has a DB call). Is there any way to avoid the conditional? This takes up a lot of space, looks ugly, and seeing conditionals disappear is always nice. Is there some other paradigm to handle this lazy loading that I just can’t see?

  • 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-27T23:41:51+00:00Added an answer on May 27, 2026 at 11:41 pm

    By using php’s __call() magic method, we can easily write a decorator object that intercepts all method calls, and caches the return values.

    One time I did something like this:

    class MethodReturnValueCache {
       protected $vals = array();
       protected $obj;
       function __construct($obj) {
           $this->obj = $obj;
       }
       function __call($meth, $args) {
           if (!array_key_exists($meth, $this->vals)) {
               $this->vals[$meth] = call_user_func_array(array($this->obj, $meth), $args);
           }
           return $this->vals[$meth];
       }
    }
    

    then

    $cachedFoon = new MethodReturnValueCache(new foon);
    $cachedFoon->getBarn();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just to clarify, by specifying something like VARCHAR(45) means it can take up to
I would just like to clarify that by 'design', I mean software design, not
Just to clarify, when I say multiple assigment, parallel assignment, destructuring bind I mean
I just want to clarify one thing. This is not a question on which
Normally when you iterate through a mysql result you do something like this: while
I use syntax like name varchar(20) NOT NULL in mysql..i have a big confusion
Let me clarify what I mean by 'normal' C++ first- I'm currently reading Walter
It just occurred to me, if you know something about the distribution (in the
There is a similar question to this on SO here , however I just
SO I have a php function for redirecting public function redirect($url, $permanent=false, $statusCode=303) {

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.