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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:38:20+00:00 2026-05-26T00:38:20+00:00

I am new to OOP (PHP) and just met the design pattern – singleton

  • 0

I am new to OOP (PHP) and just met the design pattern – singleton.
I have found a DB class which uses mysqli (singleton class). I have added some custom methods to it (insert_id(), query(), fetch_result(), etc).

Then I created a new class called UserTools and I want to extend the database class to use the methods I’ve created previously (query(), fetch_result(), etc).
But I get this error:

Fatal error: Call to private Database::__construct() from invalid context in (…)
when I try to create instance of the new class (User Tools).

What should I do? Is it a right structure?

  • 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-26T00:38:21+00:00Added an answer on May 26, 2026 at 12:38 am

    There are several way to achieve what you want.

    One would be :

    class UserTools {
        private $db;
        function __construct() {
            $this->db = Database::db_connect();
        }
    
        function login() { /* ... */}
    }
    

    Although it would be better to directly pass the database instance to the constructor like this :

    class UserTools {
        private $db;
        function __construct($db) {
            $this->db = $db;
        }
    
        function login() { /* ... */}
    }
    
    // Usage 
    $userTools = new UserTools(Database::db_connect());
    

    If you’re really lazy you could just modify your database class and make the constructor public :

    class Database {
        /* ... */
        public function __construct(){/* ... */}
        /* ... */
    }
    
    class UserTools extends Database {/* ... */}
    

    But I really discourage you to use the latter one. It’s really bad code and it doesn’t make sense in a logical point of view. Your UserTools class use a database instance. It is not a database.

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

Sidebar

Related Questions

I am new to OOP in PHP (normally write software). I have read that
I am just getting into OOP and framework design. I have started by using
I'm pretty new to OOP (and also in PHP programming), and I have some
I'm fairly new to OOP in PHP, I've made a couple of basic scripts
I'm relatively new using OOP in PHP. It's helped immensely in the organization and
I'm fairly new to PHP so I have a small problem as I'm learning:
I'm a new guy in PHP OOP concepts. One of the first things that
Hi Im trying to develop a oop php driven blog. Im new to the
I'm new to using OOP in PHP (And in general) and I had a
I have studied in php oop and stocked in the concept of reusable code.

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.