3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getBitStream($string) { $stream = []; foreach (str_split($string) as $byte) { $bits = str_split(sprintf('%08d', decbin(ord($byte)))); $stream = array_merge($stream, $bits); } return $stream; } var_dump(getBitStream('hello world!'));

preferences:
39.74 ms | 402 KiB | 5 Q