在我的網站上有一些看起來像這樣的網址。每次爆炸url的最後部分
http://example.com/our-post-name-here-number-one-81347.html our post name number one
http://example.com/our-post-name-here-number-two-81348.html our post name number two
http://example.com/our-post-name-here-number-three-81349.html our post name number three
而且我需要得到befor其中包含一個隨機數.html
的部分權利,在任何立場將這個號碼永遠是一樣的。
目前,我將這些網址存儲在.txt
文件中,該文件的帖子標題也包含在內,並通過下面的此方法進行爆炸。
$array = explode("\n", file_get_contents('http://example.com/urls/delete.txt'));
foreach ($array as $item) {
$removed = "copyright";
$nothing = "";
$url = explode(" ", $item);
$data = $url[0];
$explode = explode(".html", $data);
// other functions
$primary = $explode[0];
print $primary;
print '<br>';
}
上面的代碼目前正在返回這個。
http://example.com/our-post-name-here-number-one-81347
http://example.com/our-post-name-here-number-two-81348
http://example.com/our-post-name-here-number-three-81349
當我只希望它返回此81347
81348
81349
。