1

这是我的 if 语句,它将从源代码中获取这个示例 href:

href="/toronto/2013/05/14/the-airborne-toxic-event/4296/" 

从源代码

if ($text=preg_match('/href="([^"]*)"/', $text, $matches))
{
    $output=$matches[1];
    return $output;
}

并返回

/toronto/2013/05/14/the-airborne-toxic-event/4296/

我正在尝试在没有"/toronto"或的情况下返回该网址"/toronto/"(我不确定我需要哪个)

如果您能向我展示可以做到这一点的正则表达式,我将非常感激。谢谢

4

1 回答 1

1

使用preg_replace

return preg_replace('~^/?toronto/~', '', $output);

如果您确定“toronto/”没有出现在字符串中的其他任何位置,您可以使用str_replace

return str_replace('/toronto', '', $output);

这假设总会有一个前导斜杠。

于 2013-05-14T15:22:21.057 回答