I have to replace a block of text in around 2 000 files and replace it by an include('myText.php');
The problem here is, it's in a html file. In that case i also need to put the php tags in it but i dont find a way to do it.
Here is my code
$start = "<is_comment>";
$end = "</is_comment>";
$startChain = strpos($fileContent, $start);
$endChain = strpos($fileContent, $end) + strlen($end);
$text = substr($fileContent, $startChain, $endChain - $startChain);
//echo htmlspecialchars($text);
$content = str_replace($text, "<?php include('showISComment.php?project=$project'); ?>", file_get_contents($file));
And in the php file im doing it, when i put the php tags, it doesnt identified it as text, but automatically as tags.
thanks
showISComment.phpto generate thereplace_textfirst and then do:$content = str_replace($text, $replace_text);– fardjad Feb 14 at 15:36.html, so it doesn't get put through the PHP processor when you access it. You need to rename it to something.php. – Barmar Feb 14 at 15:39str_replace(), you can usesubstr_replace(). – Barmar Feb 14 at 15:39