show/hide this revision's text 2 Fixed code look

PHP and regex? Here's some suggestions:

'/<!--\s*LoginStart\s*-->(.)<!--\sLoginEnd\s*-->/Us'<!--\s*LoginStart\s*-->(.*)<!--\s*LoginEnd\s*-->/Us'

Might be better - the U capitalized makes the regex non-greedy, which means it'll stop at the first

Depending on how certain you are on the capitalization, adding an i at the end will make the regex search case-insensitive.

show/hide this revision's text 1

PHP and regex? Here's some suggestions:

'/<!--\s*LoginStart\s*-->(.)<!--\sLoginEnd\s*-->/Us'
Might be better - the U capitalized makes the regex non-greedy, which means it'll stop at the first

Depending on how certain you are on the capitalization, adding an i at the end will make the regex search case-insensitive.