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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:08:17+00:00 2026-05-30T13:08:17+00:00

Say I have a class like this: class Person { private $value; public function

  • 0

Say I have a class like this:

class Person
{
    private $value;

    public function __construct()
    {
        $this->value = 'new';
    }

    public static function find( $ident )
    {
        $person = new Person();
        $person->value = 'old';

        return $person;
    }
}

How can I keep the constructor from firing, or diverting it in some way to not execute some of itself if I am calling from the static find function?

The context of my example is identical to that of my real code, except the real code has a perfect amount of overhead so long that only one of the functions is ever executed. (Many objects can exist at the same time, however if the static function calls the __construct method, then there is too much overhead and loading time).

Both need to have public accessors.

  • 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-30T13:08:19+00:00Added an answer on May 30, 2026 at 1:08 pm

    You can pass a boolean into your constructor to tell it whether it should execute or not

    class Person
    {
        private $value;
    
        public function __construct($exec)
        {
            if(!$exec)
                return;
            $this->value = 'new';
            echo $this->value;  //testing
        }
    
        public static function find( $ident )
        {
            $person = new Person(false);
            $person->value = 'old';
    
            return $person;
        }
    }
    
    //$p = new Person(true);
    $p = Person::find(0);
    

    update using static variable

    class Person
    {
        private $value;
        protected static $exec1 = true;
    
        public function __construct()
        {
            if(!self::$exec1)
                return;
            $this->value = 'new';
            echo $this->value;
        }
    
        public static function find( $ident )
        {
            self::$exec1 = false;
            $person = new Person();
            self::$exec1 = true;
            $person->value = 'old';
    
            return $person;
        }
    }
    
    $p = Person::find(0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a class like this: public class Person { private String
let's say we have something like this public class Person { public string Name
Lets say I have a set of model classes like this: public class Person
Let's say I have data structures that're something like this: Public Class AttendenceRecord Public
Say I have a .NET class like so: public class Person { public string
Say I have a Django class something like this: class Person(models.Model): name = models.CharField(max_length=50)
Lets say I have this amputated Person class: class Person { public int Age
Say I have some django models, something like this: class Address(models.Model): pass class Person(models.Model):
Say I have ViewModel class MyViewModel like: public class MyViewModel : ViewModelBase { private
Let's say I have a class that implements the IDisposable interface. Something like this:

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.