$string = '';
$start = strpos($string, 'value="');
$string = substr($string, $start + 7);
$end = strpos($string, '" ');
$string = substr($string, 0, $end);
echo $string;
little more complex than webartos, but will grab any value, instead of just the youtube link