2 Array handling test php->lua
4 <?php if (!extension_loaded("lua")) print "skip"; ?>
7 $arr = array(3,4,5,array("test1","test2","test3",array(1=>1,2=>2.5,3=>false,4=>NULL)));
11 function dump_table(t,lvl)
12 print('==============\\n')
15 print(string.rep(' ',lvl),i,'=>')
16 if type(v)=='table' then
20 print(v,'(',type(v),')\\n')
23 print('==============\\n')
31 Warning: main(): Trying to push array index 0 to lua which is unsupported in lua. Element has been discarded in %s
33 Warning: main(): Trying to push array index 0 to lua which is unsupported in lua. Element has been discarded in %s