Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If the code is the same, there appears to be a difference between:

include 'external.php';

and

eval('?>' . file_get_contents('external.php') . '<?php);

What is the difference? Does anybody know?


I know the two are different because the include works fine and the eval gives an error. When I originally asked the question, I wasn't sure whether it gave an error on all code or just on mine (and because the code was evaled, it was very hard to find out what the error meant). However, after having researched the answer, it turns out that whether or not you get the error does not depend on the code in the external.php, but does depend on your php settings (short_open_tag to be precise).

share|improve this question

4 Answers

up vote 9 down vote accepted

After some more research I found out what was wrong myself. The problem is in the fact that <?php is a "short opening tag" and so will only work if short_open_tag is set to 1 (in php.ini or something to the same effect). The correct full tag is <?php, which has a space after the second p.

As such the proper equivalent of the include is:

eval('?>' . file_get_contents('external.php') . '<?php ');

Alternatively, you can leave the opening tag out all together (as noted in the comments below):

eval('?>' . file_get_contents('external.php'));

My original solution was to add a semicolon, which also works, but looks a lot less clean if you ask me:

eval('?>' . file_get_contents('external.php') . '<?php;');
share|improve this answer
thanks for the semicolon trick, it was driving me nuts! – amartin Aug 31 '09 at 7:05
1  
isn't eval("?>".file_get_contents('external.php')); the same as include 'external.php'; ?? – Timo Huovinen Mar 25 '10 at 19:17
YuriKolovsky, you are right leaving out the the php-opening tag is an alternative to following it up with a semicolon. – Jasper Apr 14 '10 at 0:23
may i ask why you appended '?>' and '<?php;' ? Btw, Mine produced an error when I used '<?php;'. I fixed it by removing the 'php' part. – kapitanluffy May 27 '12 at 12:14
@kapitanluffy: include processes the file, which means it starts in "text mode" (as opposed to "php mode", where in php mode the code is executed and in "text mode" the text is simply copied to the output), while eval starts in "php mode". I dropped out of php mode in the eval case so it would do the same as include. – Jasper Jun 20 '12 at 16:25

AFAIK you can't take advantage of php accelerators if you use eval().

share|improve this answer
I came here because the top line worked for me, while the second did not - this turned out to be a strange caveat where eval needs to end with a semi-colon, even if it's after "<?php" Anyway, that is the reason I put down a simplified version of the problem. In reality, the choice is between: get $body from db with query, eval($body) and include 'db://body' where the last one has a 400-line class to make it possible to do that. However, since you mentioned php accelerators, do they work when using the strange include I showed you? (that gets the data from the database) – Jasper Jul 26 '09 at 15:33
1  
AFAIK you have to have a real file on filesystem. – niteria Jul 26 '09 at 21:36
...and you shouldn't be concerned about it unless you have performance problem. – niteria Jul 26 '09 at 21:43
That first comment of yours can be explained in two ways. (1) You don't think a php accelerator can help or (2) You don't believe what I am saying about an include from a database. I'll assume you meant the first, as otherwise you are obviously mistaken (I currently have a copy running with that technique, and I could point you to the dark corners of the php manuals that I followed to get there). As such, I guess that makes no difference between the two. I'll probably go for the include as it allows me to use my two ways of saving with just about no differences in code. – Jasper Jul 26 '09 at 21:56
And the reason I am worried about it is that I am not building a piece of software that is supposed to serve me on one pc ever - instead I am making a piece of software that should be able to run on any pc anyone wants it installed on (much like is the case with forum software), as such an important design decision (how will I implement compiling to the database) early in development is quite essential and performance matters even if there's currently no problem. – Jasper Jul 26 '09 at 22:00
show 3 more comments

If you are using a webserver on which you have installed an opcode cache, like APC, eval will not be the "best solution" : eval'd code is not store in the opcode cache, if I remember correctly (and another answer said the same thing, btw).

A solution you could use, at least if the code is not often changed, is get a mix of code stored in database and included code :

  • when necessary, fetch the code from DB, and store it in a file on disk
  • include that file
  • as the code is now in a file, on disk, opcode cache will be able to cache it -- which is better for performances
  • and you will not need to make a request to the DB each time you have to execute the code.

I've worked with software that uses this solution (the on-disk file being no more than a cache of the code stored in DB), and I worked not too bad -- way better that doing loads of DB requests of each page, anyway...

Some not so good things, as a consequence :

  • you have to fetch the code from the DB to put it in the file "when necessary"
    • this could mean re-generating the temporary file once every hour, or deleting it when the entry in DB is modified ? Do you have a way to identify when this happens ?
  • you also have to change your code, to use the temporary file, or re-generate it if necessary
    • if you have several places to modifiy, this could mean some work

BTW : would I dare saying something like "eval is evil" ?

share|improve this answer
I'm sorry but your suggestion is completely irrelevant. I am writing some software and I made it so that it would only use files. I wanted to provide an alternative by the use of a database for when writing files is not an option, thus I ended up with this. However, we are only talking about one db query and one eval statement. And the speed is not all that bad: 1 : 2 for include from file : include from db, 10 : 8 for include from db : eval from db. Anyway, I do wonder whether a include from db does get cached... Oh, and the reason I came here was that missing semi-colon driving me crazy – Jasper Jul 26 '09 at 15:20
OK, then ; sorry about that ^^ – Pascal MARTIN Jul 26 '09 at 17:03

This lets you include a file assuming file wrappers for includes is on in PHP:

function stringToTempFileName($str)
{
    if (version_compare(PHP_VERSION, '5.1.0', '>=') && strlen($str < (1024 * 512))) {
        $file = 'data://text/plain;base64,' . base64_encode($str);
    } else {
        $file = Utils::tempFileName();
        file_put_contents($file, $str);
    }
    return $file;
}

... Then include that 'file.' Yes, this will also disable opcode caches, but it makes this 'eval' the same as an include with respect to behavior.

share|improve this answer
1  
Your statement is even more irrelevant. I was simply offering a workaround re: the slight differences in behavior between eval() and include() language constructs. Your (ungrateful) complaint only indicates that you fail to perceive the fact that this is a community where others can benefit from thoughtful comments left by a well-meaning programmer who does perceive the same. You're not the only programmer in this world. fail(); – Jaimie Sirovich Apr 16 '10 at 23:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.