gpt4 book ai didi

php - 如何删除 URL 中的所有特殊字符?

转载 作者:行者123 更新时间:2023-12-02 01:22:19 28 4
gpt4 key购买 nike

我有我的课

public function convert( $title )
{
$nameout = strtolower( $title );
$nameout = str_replace(' ', '-', $nameout );
$nameout = str_replace('.', '', $nameout);
$nameout = str_replace('æ', 'ae', $nameout);
$nameout = str_replace('ø', 'oe', $nameout);
$nameout = str_replace('å', 'aa', $nameout);
$nameout = str_replace('(', '', $nameout);
$nameout = str_replace(')', '', $nameout);
$nameout = preg_replace("[^a-z0-9-]", "", $nameout);

return $nameout;
}

但是当我使用 öü 等特殊字符时,我无法让它工作,有人可以帮助我吗?我使用 PHP 5.3。

最佳答案

this SO thread中的第一个答案包含执行此操作所需的代码。

关于php - 如何删除 URL 中的所有特殊字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2448951/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com