<?php chr(int $codepoint): string
<?php $string = ''; for ($i = 0; $i < 256; $i++) { $string .= chr($i); } return $string;