#1 Anonym5786842 $text = 'nejaký text "toto treba zmazať" pokračovanie textu'; $start = strpos($text, '"'); $end = strpos($text, '"', $start + 1); echo substr($text, 0, $start) . substr($text, $end + 1);