Posted by Carl Vondrick on 08/11/06 20:53
Bint wrote: > I have an array of numbers, and I need to turn it into a single binary > string. How do I do that? Sorry, but what you are trying to do? You could do something like this: $string = array(1,2,3,5,6,7); $output = ''; foreach ($string as $ascii) { $output .= chr($ascii); }
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming