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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:00:00+00:00 2026-05-24T00:00:00+00:00

I have this problem that I have many huge functions, and I’m using only

  • 0

I have this problem that I have many huge functions, and I’m using only few in a given script.
Every function sits in its own file. It would be nice to be able to ‘autoload’ or rather require_once a file when given function doesn’t exists.

Maybe is there a way to override Fatal error: Call to undefined function... at the beginning of a script, so everytime that error fires up the script would first try to require_once a file name with name of a non existent function, and then try to call the function again.

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

    Since php 5.3.0 you could do someting like:

    class Funcs
    {
        public function __callStatic($name, $args) {
            if (!function_exists($name)) {
                require_once sprintf(
                    'funcs/%s.func.php', // generate the correct path here
                    $name
                );
            }
    
            if (function_exists($name)) {
                return call_user_func_array($name, $args);
            }
            else {
                // throw some error
            }
        }
    }
    

    And then use it like (for example):

    Funcs::helloworld();
    

    Which would try to load a file in funcs/helloworld.func.php and execute helloworld after successfull loading.

    This way you could ommit the repeated inline tests.

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

Sidebar

Related Questions

I have this problem that my sites uses alot of ajax and when a
Ok I have this problem that I've never had before, it's really bugging me.
I have this problem decomposing a relation schema into a set of schemas that
I have this little problem, that I cannot figure out which arguments to pass
I have this quite popular problem, but have failed to find a solution that
In the end, I have decided that this isn't a problem that I particularly
(I have a problem that I illustrated in this question but had no correct
This is a really weird problem that I have been having. When I download
I have this jsp client that consumes a webservice. The problem with the client
I have this issue with ComboBox that uses IEnumerable<Brush> as ItemsSource; the problem lies

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.