<?php function text2bin($text){ return implode("", array_map(function($v){ return (ctype_alpha($v) ? sprintf("%08d", decbin(ord($v))) : $v) . " "; }, str_split($text))); } echo text2bin("Hi");
You have javascript disabled. You will not be able to edit any code.