string_frombytes [function]
string_frombytes( int byteval )
string_frombytes( array bytes )
returns a string, created from either one byte value (overload #1) or an array of byte values (overload #2)
- byte values must be in the range [0-255]
string_frombytes( 53 ); // string [1] "5" string_frombytes([ 84, 101, 115, 116 ]); // string [4] "Test"