I have an array of bytes that I'd like to map to their ASCII equivalents.
How can I do this?
|
|
If by array of bytes you mean:
array_map()Then it's as simple as:
foreach()Which is the compact version of:
pack()But the most advisable alternative could be to use
That construct is also more useful if you might need to switch from bytes C* (for ASCII strings) to words S* (for UCS2) or even have a list of 32bit integers L* (e.g. a UCS4 Unicode string). |
|||||||||||||||
|
|
Yet another way:
Hurray! |
|||
|
|
|
Mario has already provided the best fit, but here is a more exotic way to achieve this.
|
|||
|
|