You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add This function in library.
protected function clean_file_name($file_name){
$result = preg_replace('/[^A-Za-z0-9 _ .-]/', '', $file_name);
return $result;
}