0

我在使用正则表达式验证表单条目时遇到问题。我只是在学习正则表达式,专门针对这个任务。

问题:我试图编写一个匹配 soundcloud iframe 的正则表达式。但是,无论条目是否为 soundcloud iframe,都接受表单条目。任何帮助将非常感激!

这是我想出的功能:

function iframe_match ($iframe){
return(preg_match('#/<iframe width="100%" height="450" scrolling="no" frameborder="no"     src="https://w.soundcloud.com/player/\?url=http%3A%2F%2Fapi.soundcloud.com%2F|[a-z]|%|[0-9]|    [F]|">\</iframe\>/#', $iframe)) ? true : false;
}

这是具体的表格检查:

else if (iframe_match($_POST['track_file1']) === false){
echo '<br/><br/><font color="red"><strong>Must include an iframe</strong><font>'; 
 }
4

1 回答 1

1
function iframe_match ($iframe){
return(preg_match('/<iframe[^>]*src="https:\/\/w.soundcloud.com\/player\/[^"]+">\s*<\/iframe>/',$iframe)) ? true : false;
}
于 2013-05-21T06:55:29.847 回答