我在使用正则表达式验证表单条目时遇到问题。我只是学习正则表达式,专门用于此任务。
问题:我试图编写一个与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>';
}
答案 0 :(得分:1)
function iframe_match ($iframe){
return(preg_match('/<iframe[^>]*src="https:\/\/w.soundcloud.com\/player\/[^"]+">\s*<\/iframe>/',$iframe)) ? true : false;
}