我的网站上收到了很多 DMCA 删除电子邮件,我正在尝试自动删除网站上的这些曲目。
这些电子邮件看起来都与此类似。
http://example.com/title-to-post.html title - to post
http://example.com/title-of-post.html title - of post
http://example.com/some-song-artist-some-song-name.html some song artist - some song name
但是其中有很多,我只想返回其中每个部分的URL部分,例如下面的部分。
http://example.com/title-to-post.html
http://example.com/title-of-post.html
http://example.com/some-song-artist-some-song-name.html
编辑:我将这些文件存储到txt文件中,然后使用标准代码调用它们。
$urls = file_get_contents( "oururls.txt" );
$data = explode(",", $urls);
foreach ($data as $item) {
echo "$item";
echo '<br>';
}
没有什么能够真正发挥作用,它如何回归冠军,我只想要 urls 。
答案 0 :(得分:6)
如果URL后面总是有空格,你可以用“”分解文本并得到第一部分。例如:
$.ajax({
type: "POST",
url: "includes/available.php",
data: "day=" + $theID + "&calendar=" + $theDuration + "&rand=" + Math.random(),
success: function(data) {
$("#"+$theLiID).tooltip({title: data, trigger: "click", placement: "auto right",html: true});
$("#"+$theLiID).tooltip("show");
},
dataType: "text"
});