7

I would like to use PHP to input a certain text and the output should be the text in between two words. To clarify:

Input:

Lorem ipsum dolor sit amet

Output:

dolor sit
Deniz Zoeteman
  • 9,691
  • 26
  • 70
  • 97

1 Answers1

14
$str = 'Lorem ipsum dolor sit amet';
$word1 = 'ipsum';
$word2 = 'amet';
preg_match('/'.preg_quote($word1).'(.*?)'.preg_quote($word2).'/is', $str, $match);
// result would be in $match[1]
delphist
  • 4,409
  • 1
  • 22
  • 22