1

我正在尝试在上传时为图像创建一个 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 spaceswith和with-之类的字符á,é,í,ó,úa,e,i,o,u

如果文件名是:"prueba para Guardar ímagen ñueva.png"

肯定是:"prueba-para-guardar-imagen-nueva.png"

谢谢!

4

1 回答 1

0

对于您想要的行为,您需要添加到第一行\.

// replace non letter or digits by -
$text = preg_replace('~[^\pL\d\.]+~u', '-', $text);

第三排也是\.

// remove unwanted characters
$text = preg_replace('~[^-\w\.]+~', '', $text);
于 2016-08-02T22:00:46.690 回答