$text = '<iframe class="test" data-src="link1" scrolling="no" allowfullscreen="true"></iframe>';
preg_match('@<iframe class="test" data-src="(.*?)" scrolling="no" allowfullscreen="true"></iframe>@', $text, $result);
echo $result[1];