Image POST php slug



我试图在上传时为图像创建一个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('~[^pLd]+~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,用a,e,i,o,u 删除像á,é,í,ó,ú这样的字符

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

它必须是:"prueba-para-guardar-imagen-nueva.png"

谢谢!

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

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

第三行也是.

// remove unwanted characters
$text = preg_replace('~[^-w.]+~', '', $text);

相关内容

  • 没有找到相关文章

最新更新