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

Link to comment
Share on other sites

You could use regular expressions to extract everything between PHP tags and then eval the code..?  But I'd stored the files in an unaccessible location just for a lil' security - ie. not in 'htdocs' ..

 

Adam

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.