使用preg_place删除URL中的&;和空格
我正在尝试删除URL中的空格和&;,并将其替换为-。到目前为止,以下工作是有效的:
preg_replace('/s+/', '-', $page->label) // whitepace gets replaced with -
preg_replace('/&/', '-', $page->label) // & gets replaced with -
我希望将这两个放在一行中,但我无法将这两个组合在一起。有人能帮忙吗? 提前非常感谢您。
解决方案
这应该可以很好地将所有内容保持在一行中。
$output = preg_replace('/s+|&/', '-', $page->label);
相关文章