e.g. from $ content:
START FIRST AAA SECOND AAA
1) if you use:
$content = preg_replace('/START(.*)AAA/', 'REPLACED_STRING', $content);
it will change everything: from START to the last AAA, and your result will be:
REPLACED_STRING
2) if you use:
$content = preg_replace('/START(.*?)AAA/', 'REPLACED_STRING', $content);
Your result will look like this:
REPLACED_STRING SECOND AAA
solution fix Mar 27 '13 at 11:15 2013-03-27 11:15
source share