up vote 1 down vote favorite
share [g+] share [fb]

I'm attempting to file_get_contents and output php code as a string without being rendered. The idea is to grab the raw un-rendered file contents so they can be edited in a textarea...

// file "foo.php" I'm needing the contents of
<h1>foo</h1>
<? include 'path/to/another/file' ?>

// php file that's calling the file_get_contents
<?php
    echo file_get_contents('foo.php');
?>

The above code is stripping out the php include in foo.php which outputs:

<h1>foo</h1>

Does anyone know how I can get foo.php contents as a raw un-rendered string where output will be?:

<h1>foo</h1>
<? include 'path/to/another/file' ?>

Any help is greatly appreciated!

link|improve this question

75% accept rate
1  
Have you viewed the resulting source to make sure the content is really gone? – Charles Jun 18 '10 at 19:59
What you did should work. The only situation I can think of that would fail is if you are accessing foo.php as an URL (domain/foo.php)... – Victor Nicollet Jun 18 '10 at 20:01
Doh! Okay, it's showing up in source but not in the DOM?? – shanebo Jun 18 '10 at 20:02
Victor, yes it's a local file. – shanebo Jun 18 '10 at 20:04
Charles, is there a method for the php code string to show up in DOM though? – shanebo Jun 18 '10 at 20:09
show 1 more comment
feedback

1 Answer

up vote 4 down vote accepted

As far as I know you can't get php content unless it's on the same server. Make sure you're trying to access a locally hosted file and not something remote and it should work.

Also if you try to echo code it will try to parse it, so pass it through htmlspecialchars($source) and it should work.

Something like this:

<?php
    echo "<pre>";
    echo htmlspecialchars(file_get_contents('file.php'));
    echo "</pre>";
?>

Would echo formatted source code of the php file, including comments and any other text in it without being parsed. And seems it looks like it's important to you, I'd also say that it shows in the DOM of course since it's no longer code, now it's text. You can place it inside a container, style it and do whatever you want with it.

link|improve this answer
Worked perfectly. Thanks thisMayhem! – shanebo Jun 18 '10 at 20:35
Glad I could help you, good luck with your project – thisMayhem Jun 18 '10 at 20:39
feedback

Your Answer

 
or
required, but never shown

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