Guest User

Untitled

a guest
Oct 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. function z($a){return implode(null,array_map('chr',
  3. array_map('octdec',array_map('ord',str_split($a)))
  4. ));}
  5. function a($a){return implode(null,array_map('chr',
  6. array_map('decoct',array_map('ord',(str_split($a))))
  7. ));}
  8.  
  9. $a = 'This_is_AZaz09_:function';
  10.  
  11. echo z(a($a));
Add Comment
Please, Sign In to add comment