I need a solution that remove all special characters except alphanumeric and accents. I tryed this solution without success.
preg_replace('/[^a-zA-ZáéíóúÁÉÍÓÚâêîôÂÊÎÔãõÃÕçÇ0-9_ \.&-]/s', '', $string);
Furthermore, its need that regex (or other specific solution) allow chinese and arabian charset.
any help its really apprecieted!