Strings Php

$text = "

This is some text here \"

\".

"; 
ereg("

(([^<\"]|[^<]*<[^\/][^<])*(\"[^\"]*\"([^<\"]|[^<]*<[^\/][^<])*)*)?<\/p>", $text, $matches); 
echo "Found text: " . $matches[1] . "\n"; 
?>