我正在尝试在上传时制作一个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
删除-
,使用á,é,í,ó,ú
删除a,e,i,o,u
等字符
如果文件名是:"prueba para Guardar ímagen ñueva.png"
必须是:"prueba-para-guardar-imagen-nueva.png"
谢谢!
答案 0 :(得分:0)
对于您想要的行为,您需要添加到第一行files = ['file1', 'file2']
def read(f):
f = f + '.csv'
df = pd.read_csv(f, usecols=['A', 'B'])
return df.drop_duplicates(subset=['A']).set_index('A').B
pd.concat([read(f) for f in files], axis=1, keys=files)
\.
和第三行// replace non letter or digits by -
$text = preg_replace('~[^\pL\d\.]+~u', '-', $text);
\.