$regex_pattern = "((https?|ftp|gopher|telnet|file|notes|ms-help):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)";
此代码获取所有HTTP链接,但我只需要.mp3链接
答案 0 :(得分:3)
只需将\.mp3
放在最后。
$regex_pattern = "((https?|ftp|gopher|telnet|file|notes|ms-help):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*\.mp3)";
答案 1 :(得分:0)
如果你只需要.mp3链接,那么你只需要检查.mp3,所以
$regex_pattern = "\.mp3";