Skip to content

Instantly share code, notes, and snippets.

@wudi
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wudi/5743ad5b5906c64e182b to your computer and use it in GitHub Desktop.
Save wudi/5743ad5b5906c64e182b to your computer and use it in GitHub Desktop.
NSObject To String
<?php
$str = '82a16300 a16482a9 61737365 745f6b65 79da002a 31343130 37383632 33333538 61393737 63363732 61393836 61353333 39303238 61363035 35343261 3832a564 65627567 da005968 7474703a 2f2f3139 322e3136 382e3738 2e31373a 38303830 2f63646e 5f617373 6574732f 61756469 6f2f3230 31343039 2f31352f 62633537 61353430 34333461 31656534 38386132 30386632 64643733 37316135 2e616d72';
$str = str_replace(' ','',$str);
for($i =0; $i<strlen($str); $i+=2){
$char = substr($str, $i,2);
$dec_str = hexdec($char);
echo chr($dec_str);
}
echo PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment