3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getRndIV($iv_len) { $iv = ''; while ($iv_len-- > 0) { $iv .= chr(mt_rand() & 0xff); } return $iv; } echo getRndIV('16');

preferences:
34.38 ms | 402 KiB | 5 Q