S Shinzo Mitglied 16. Juni 2005 #1 Str_replace: Anführungsstriche entfernen Hallo, ich habe ein Problem. Und zwar möchte ich die Anführungsstriche bei "ein wort" weghaben. PHP: $titel = str_replace(""", "", $titel); Wenn ich das so mache, dann kommt ein Fehler. Zuletzt bearbeitet: 16. Juni 2005
Str_replace: Anführungsstriche entfernen Hallo, ich habe ein Problem. Und zwar möchte ich die Anführungsstriche bei "ein wort" weghaben. PHP: $titel = str_replace(""", "", $titel); Wenn ich das so mache, dann kommt ein Fehler.
Dr Dau ich wisch hier durch 16. Juni 2005 #2 Hallo! Escapen soll da helfen. PHP: $titel = str_replace("\"", "", $titel); Gruss Dr Dau
Gumbo Erfahrenes Mitglied 16. Juni 2005 #3 Folgendes wäre ebenfalls möglich: PHP: $titel = str_replace('"', '', $titel); PHP: $titel = str_replace(chr(0x22), '', $titel);
Folgendes wäre ebenfalls möglich: PHP: $titel = str_replace('"', '', $titel); PHP: $titel = str_replace(chr(0x22), '', $titel);