Guest User

Untitled

a guest
Nov 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $str = '('.chr(0x00).chr(0x91).')' ;
  2. $str = preg_replace("/x00x09/",'-',$str) ;
  3.  
  4. $str = '(' . chr(0x00) . chr(0x91) . ')' ;
  5. $str = preg_replace('/x00x09/', '-', $str) ;
  6.  
  7. $str = preg_replace('/[x00x91/]', '-', $str) ;
Add Comment
Please, Sign In to add comment