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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:20:18+00:00 2026-05-23T07:20:18+00:00

I want to include an external file as a class body, something like this:

  • 0

I want to include an external file as a class body, something like this:

//$key is alphanumeric
$className='_Module_'.$key;
if(!class_exists($className))
{
    eval(' class '.$className.' extends ModuleContext');
    {
        ...include the file here...
    }
}
eval('$instance=new '.$className.'();');

This does what I want:

//$key is alphanumeric
$className='_Module_'.$key;
if(!class_exists($className))
{
    //There's got to be a better way to do this
    $contents=rtrim(ltrim(trim(file_get_contents($fileName.'.php',true)),'<?php'),'?>');
    //All on one line to preserve line numbering for errors
    eval(' class '.$className.' extends ModuleContext{ '.$contents.' }');
}
eval('$instance=new '.$className.'();');

I don’t like using eval to include the whole file because it generates confusing error messages:

PHP Fatal error:  Call to undefined function doFoo() in test/test.php(57) : eval()'d code on line 7

and I’ve read in other posts that eval()’d code doesn’t take advantage of php accelerators.
Also, it requres some trimming to remove the ‘<?php’ and ‘?>’ tags, since they don’t work so well inside a class definition.

The included file needs to be ‘user friendly’ to someone who is familiar with PHP, but not object oriented programming – it will have a few pre-defined functions to be filled in by the module implementer.

Is there a way to do this that doesn’t use eval for the include?

  • 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-23T07:20:18+00:00Added an answer on May 23, 2026 at 7:20 am

    If I understand you correctly, ideally you would extend your class rather than trying to evaluate ad-hoc a body for your class:

    class ClassA {
      public function greet( $msg ) {
        echo $msg;
      }
    }
    
    class ClassB extends ClassA {
      public function wave( $times ) {
        echo sprintf("Waves %s times!", $times);
      }
    }
    
    $instance = new ClassB();
    $instance->greet("Hello World");
    $instance->wave("five");
    

    Note here how I’m able to build off of my class, adding new functionality and properties to the ‘body’ of it.

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

Sidebar

Related Questions

I have a batch file and I want to include an external file containing
We have an external .js file that we want to include in a number
I want to include a batch file rename functionality in my application. A user
I want to include some dynamic part in the filename of the msi file
I want to include the last 2 files in my php file based on
I have an external JAR signpost-core-1.2.1.1.jar (from http://code.google.com/p/oauth-signpost/ ), that I want to include
I understand that if you want to include external packages you have to include
I've got a problem with my code. It basically looks like this: someclass.hpp: class
I want to include a silverlight application (.xap file) inside a HTML page. Using
I want to replace the content of the #textoGrande div with an external file.

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.