PageRenderTime 63ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/php/arrays_global_twodim_runme.php

#
PHP | 22 lines | 17 code | 5 blank | 0 comment | 2 complexity | f83c5ba59f0d7dafa4888e7ae96f816e MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <?php
  2. require "tests.php";
  3. require "arrays_global_twodim.php";
  4. check::functions(array(fn_taking_arrays,get_2d_array,new_simplestruct,new_material));
  5. check::classes(array(arrays_global_twodim,SimpleStruct,Material));
  6. check::globals(array(array_c,array_sc,array_uc,array_s,array_us,array_i,array_ui,array_l,array_ul,array_ll,array_f,array_d,array_struct,array_structpointers,array_ipointers,array_enum,array_enumpointers,array_const_i,chitmat,hitmat_val,hitmat,simplestruct_double_field));
  7. $a1=array(10,11,12,13);
  8. $a2=array(14,15,16,17);
  9. $a=array($a1,$a2);
  10. $_a=check::get(array_const_i);
  11. for($x=0;$x<count($a1);$x++) {
  12. for($y=0;$y<2;$y++) {
  13. check::equal($a[$y][$x],get_2d_array($_a,$y,$x),"check array $x,$y");
  14. }
  15. }
  16. check::done();
  17. ?>