如何找到2个网址之间的共同模式

时间:2017-01-21 03:42:17

标签: php regex url pattern-matching longest-substring

我想在PHP中找到2个URL之间的共同模式。 我已经使用了https://gist.github.com/chrisbloom7/1021218,但是在找到最长匹配时停止了,而不考虑URL中存在的通配符。

e.g。这里有2个网址

如果我对这些函数运行,我的常见模式是

http://example.com/collections/

我正在寻找的是

http://example.com/collections/*/products/

有谁知道如何调整代码以使其有效或有更好的方法吗?

1 个答案:

答案 0 :(得分:1)

而不是正则表达式,拆分/上的网址,然后比较数组的每个元素,然后重新构建网址:

$url1 = 'http://example.com/collections/dresses/products/foo/dress.html';
$url2 = 'http://example.com/collections/shoes/products/shoe.html';

$part1 = explode('/', $url1);
$part2 = explode('/', $url2);

$common = array();
$len = count($part1);
if (count($part2) < $len) $len = count($part2);

for ($i = 0; $i < $len-1; $i++) {
    if ($part1[$i] == $part2[$i]) {
        $common[] = $part1[$i];
    } else {
        $common[] = '*';
    }
}
$out = implode('/', $common);
echo "$out\n";

<强>输出:

http://example.com/collections/*/products