TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
311 B
16 lines
311 B
<?php
|
|
|
|
$bytes = random_bytes(2 * 1024 * 1024);
|
|
|
|
$out = 'static const unsigned char data[] = {';
|
|
|
|
for ($i = 0; $i < strlen($bytes); $i++) {
|
|
$out .= ord($bytes[$i]) . ', ';
|
|
if ($i % 32 == 0) {
|
|
$out .= "\n\t";
|
|
}
|
|
}
|
|
|
|
$out .= '};' . PHP_EOL;
|
|
|
|
file_put_contents(__DIR__ . '/const_c_array.c', $out); |