All pastes #1963313 Raw Edit

Unnamed

public text v1 · immutable
#1963313 ·published 2010-10-15 19:23 UTC
rendered paste body
function FindText($string, $start, $end)
{
    $pos = strpos($string, $start);
    if($pos >= 0)
    {
        $pos += strlen($start);
        
        $pos2 = strpos($string, $end, $pos);
        if($pos2 >= $pos)
        {
            return substr($string, $pos, $pos2 - $pos);
        }
    }
}