I am uploading a zip folder using Laravel after uploading I am extracting this zip folder using the zip archive everything works perfectly but I have a problem with file names in this folder, The extracted folder may contain many files these file names have special characters like " æ Æ Ø " which I want to remove from the file names.
I have used preg_replace but failed to rename the file.
preg_replace('/[ÆØæøÅå]/', '',path/K01_H3_N01 - Længdesnit A-A.pdf);
I only want to remove " æ Æ Ø " these characters from the file name. Thanks in advance.