1
Rimuovi più spazi bianchi
Ricevo $row['message']da un database MySQL e ho bisogno di rimuovere tutti gli spazi bianchi \n \te così via. $row['message'] = "This is a Text \n and so on \t Text text."; dovrebbe essere formattato per: $row['message'] = 'This is a Text and so on Text text.'; Provai: $ro = preg_replace('/\s\s+/', …