图片 POST php 别名

Image POST php slug

我试图在上传时为图片创建一个 slug 名称,我正在使用 str_replace 进行测试,但它不起作用。

$_FILES['imgProfile']['name'] = str_replace("í", "i", $_FILES['imgProfile']['name']);

它 returns 类似于: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 和带有 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('~[^\pL\d\.]+~u', '-', $text);

第三行也是\.

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