This topic is locked
[SOLVED]

 Hex to ascii

9/29/2017 2:13:36 PM
PHPRunner General questions
C
cadman12 author

Can we convert a field from hex to ascii in phprunner?

romaldus 10/2/2017

In phprunner visual editor, setup your field to View As > Custom and use the following code to convert :



$str = hex2bin($value);

$value = $str;


To Convert [color="#ff0000"]ASCII to Hex :



$str = bin2hex($value);

$value = $str;
C
cadman12 author 10/12/2017

Thankyou Sir works perfectly. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=83451&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' />



In phprunner visual editor, setup your field to View As > Custom and use the following code to convert :



$str = hex2bin($value);

$value = $str;


To Convert [color="#ff0000"]ASCII to Hex :



$str = bin2hex($value);

$value = $str;


C
cadman12 author 10/16/2017

One issue though, the search filter does not work for the ascii info only original hex.