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

  • Home
  • SEARCH
  • 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 694443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:51:26+00:00 2026-05-14T02:51:26+00:00

By any means, is it possible to create an instance of a PHP class

  • 0

By any means, is it possible to create an instance of a PHP class without calling its constructor?

I have Class A and while creating an instance of it, I’m passing a file and in the constructor of Class A I’m opening that file.

Now in Class A, there is a function which I need to call, but I don’t have to pass a file, so there is no need for the constructor functionality of opening a file as none is being passed.

So my question is: Is it by any means possible to create an instance of a PHP class without calling its constructor?

Note: I cannot make a function static as I’m using some of the class properties in a function.

  • 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-14T02:51:26+00:00Added an answer on May 14, 2026 at 2:51 am

    A classes constructor will always be called. There are a couple ways you could work around this, though.

    The first way is to provide default values for your parameters in the constructor, and only perform certain actions on those parameters if they’re set. For example:

    class MyClass {
        public __construct($file = null) {
            if ($file) {
                // perform whatever actions need to be done when $file IS set
            } else {
                // perform whatever actions need to be done when $file IS NOT set
            }
            // perform whatever actions need to be done regardless of $file being set
        }
    }
    

    Another option is to extend your class such that the constructor of the child class does not call the constructor of the parent class.

    class MyParentClass {
        public __construct($file) {
            // perform whatever actions need to be done regardless of $file being set
        }
    }
    
    class MyChildClass extends MyParentClass {
        public __construct() {
            // perform whatever actions need to be done when $file IS NOT set
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

any idea how if the following is possible in PHP as a single line
I am not a DBA by any means, but being a web developer means
http://localhost/XYZ/Client/(S(enlodz55ov4ncafza0gpp045))/Info/Rates.aspx Does anyway know what /(S(enlodz55ov4ncafza0gpp045))/ means? Any help appreciated.
I have a query which is meant to show me any rows in table
is it possible to use a datacontext or LINQ when you have an XML
I need to create the equivalent of jQuery's ready event without using jQuery. It
What is Rhino Mocks Repeat ? Repeat.Any(); Repeat.Once(); What does it mean and how
Any personal experience in overcoming web application performance hurdles? Any recommended strategies for improving
Any good recommendations for a platform agnostic (i.e. Javascript) grid control/plugin that will accept
Any good suggestions? Input will be the name of a header file and output

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.