Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function unhtmlspecialchars( $string ) {
  2. $string = str_replace ( '&', '&', $string );
  3. $string = str_replace ( ''', '\'', $string );
  4. $string = str_replace ( '"', '\"', $string );
  5. $string = str_replace ( '<', '<', $string );
  6. $string = str_replace ( '>', '>', $string );
  7. return $string;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement