I have a string with a few non non-printable bytes. I want to convert this string into a human readable format. Non-printable charachters can be represented with something like ? or <07>, printable charachters should remain untouched.
Is there an easy way to do that in PHP?
non binary bytes?ord(),chr(),unpack()andbindec()