Arquivos
hhvm/hphp/test/slow/ext_array/array_map.php.expect
T
Jordan DeLong 9e127b9831 Rewrite TestExtArray in php
Most of this is ported over, except some omissions:
  - array_filter, array_key_exists (suspected we had coverage already;
    one is a bytecode, and one was rewritten in hhas recently)
  - some random cases distinguishing init_null_variant vs. null_variant
2013-06-18 16:23:18 -07:00

52 linhas
474 B
Plaintext

array(5) {
[0]=>
int(1)
[1]=>
int(8)
[2]=>
int(27)
[3]=>
int(64)
[4]=>
int(125)
}
array(5) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
[4]=>
int(5)
}
array(2) {
["x"]=>
int(6)
[0]=>
int(7)
}
array(2) {
[0]=>
array(2) {
[0]=>
int(6)
[1]=>
array(2) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
}
}
[1]=>
array(2) {
[0]=>
int(7)
[1]=>
bool(true)
}
}