我正在尝试在上传时为图像创建一个 slug 名称,我正在测试str_replace
但它不起作用。
$_FILES['imgProfile']['name'] = str_replace("í", "i", $_FILES['imgProfile']['name']);
它返回类似:i?magen.png
并且不上传图像。
我尝试使用此功能并且有效,但删除了文件扩展名。
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\pL\d]+~u', '-', $text);
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// trim
$text = trim($text, '-');
// remove duplicate -
$text = preg_replace('~-+~', '-', $text);
// lowercase
$text = strtolower($text);
if (empty($text)) {
return 'n-a';
}
return $text;
}
我只需要删除blank spaces
with和with-
之类的字符á,é,í,ó,ú
a,e,i,o,u
如果文件名是:"prueba para Guardar ímagen ñueva.png"
肯定是:"prueba-para-guardar-imagen-nueva.png"
谢谢!