# Avoiding false-negatives ## Unescaping statements Post-processing previously escaped/encoded statements can cause insecure scenarios. `@psalm-taint-unescape ` allows to declare those components insecure explicitly. ```php ', '"', '"'], $str ); } $safe = htmlspecialchars($_GET['text']); echo decode($safe); ```