$b = strpos($line,$start); $a = strpos($line,$end,$b+9); code example
Example 1: find in php string or
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: strpos
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int