note 15227 deleted from function.pack by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: master at dreamphp dot com 

----

^-^ Simple version.

function bin2asc ($temp) {
  $len = strlen($temp);
  for ($i=0;$i<$len;$i+=8) $data.=chr(bindec(substr($temp,$i,8)));
  return $data;
}

function asc2bin ($temp) {
  $len = strlen($temp);
  for ($i=0; $i<$len; $i++) $data.=sprintf("%08b",ord(substr($temp,$i,1)));
  return $data;
}
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.