PageRenderTime 65ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/php4/arrays_global_twodim_runme.php4

#
PHP | 23 lines | 17 code | 5 blank | 1 comment | 2 complexity | 7a412b04d47c2c8c5d2ee49f612d7271 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <?php
  2. // Sample test file
  3. require "tests.php4";
  4. require "arrays_global_twodim.php";
  5. check::functions(array(fn_taking_arrays,get_2d_array));
  6. check::classes(array(simplestruct,material));
  7. 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));
  8. $a1=array(10,11,12,13);
  9. $a2=array(14,15,16,17);
  10. $a=array($a1,$a2);
  11. $_a=check::get(array_const_i);
  12. for($x=0;$x<count($a1);$x++) {
  13. for($y=0;$y<2;$y++) {
  14. check::equal($a[$y][$x],get_2d_array($_a,$y,$x),"check array $x,$y");
  15. }
  16. }
  17. check::done();
  18. ?>