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.
15 lines
364 B
15 lines
364 B
<?php
|
|
|
|
use native_types;
|
|
|
|
function main()
|
|
{
|
|
$array = std::array(std::array(std::array(native_types::type_int, 13), 16), 19);
|
|
$index = 9;
|
|
$index2 = 5;
|
|
$array[$index2][$index][0] = 2026;
|
|
// $array = std::array(native_types::type_int, 100);
|
|
// $array[99] = 2026;
|
|
var_dump($array[$index2][$index][0]);
|
|
var_dump($array[$index2][$index]);
|
|
} |