Jump to content

parsing PHP problem with file_get_contents


GuitarGod

Recommended Posts

I'm using file_get_contents to call up my HTML files, but sometimes some of these HTML file contain PHP in short tag for, example:

 

<html>
<title><?= $page_title; ?></title>

etc ....

 

The only problem is that all my PHP tags are ignored, probably because file_get_contents doesn't parse the PHP. Any solution to this? Better yet, a solution where I could still use file_get_contents? I tried looking into using an eval function but didn't really know much about it.

 

Any advice is appreciated. :D

LOL, beaten to the post.

 

Eval assumes that the code it is passed is or at leasts starts with php code. If the file starts with HTML, then you need to prepend a closing ?> tag to drop eval() out of php "mode". Actually, since a file would have an opening <?php tag if it started with php code, you could always prepend a closing ?> tag anytime you get code from a file.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.