I'm searching for a solution, for this. It's easy to select all the content inside of PHP tags (basically ) but I cant seem to get the opposite to work.
First, I tought this would work:
/\?>(?<html>.*?)<\?|^(.*?)(?=<\?)|(?<=\? >)(.*?)$/
(everything between ?> and \<\?, everything between ^ and \<\?, everything between ?> and $)
But here, the problem is that a file that starts with <?php, and doesnt have a single other closing tag, until the end of the file, fails.
At the end of the day, I want to just match everything outside of <? ... ?>
THIS,<?php ... ?>
THIS<?php ... ?>
AND THIS
Does anyone have an idea? Thanks.

preg_replacethose matches? This way you end up having a variable with just the contents outside the php tags. – Benjamin Paap Jan 15 at 15:12