PageRenderTime 56ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/good/ext/standard/tests/strings/vfprintf_variation13_64bit.php

http://github.com/facebook/hiphop-php
PHP | 61 lines | 38 code | 9 blank | 14 comment | 1 complexity | 71fd63de15d9b14dd1a701493eac7177 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh
  2. /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
  3. * Description: Write a formatted string to a stream
  4. * Source code: ext/standard/formatted_print.c
  5. */
  6. /*
  7. * Test vfprintf() when different hexa formats and hexa values are passed to
  8. * the '$format' and '$args' arguments of the function
  9. */
  10. <<__EntryPoint>> function main(): void {
  11. echo "*** Testing vfprintf() : hexa formats with hexa values ***\n";
  12. // defining array of different hexa formats
  13. $formats = varray[
  14. "%x",
  15. "%+x %-x %X",
  16. "%lx %Lx, %4x %-4x",
  17. "%10.4x %-10.4x %04x %04.4x",
  18. "%'#2x %'2x %'$2x %'_2x",
  19. "%x %x %x %x",
  20. "% %%x x%",
  21. '%3$x %4$x %1$x %2$x'
  22. ];
  23. // Arrays of hexa values for the format defined in $format.
  24. // Each sub array contains hexa values which correspond to each format string in $format
  25. $args_array = varray[
  26. varray[0x0],
  27. varray[-0x1, 0x1, +0x22],
  28. varray[0x7FFFFFFF, -0x7fffffff, +0x7000000, -0x80000000],
  29. varray[123456, 12345678, -1234567, 1234567],
  30. varray[1, 0x2222, 0333333, -0x44444444],
  31. varray[0x123b, 0xfAb, "0xaxz", 01293],
  32. varray[0x1234, 0x34, 0x2ff],
  33. varray[0x3, 0x4, 0x1, 0x2]
  34. ];
  35. /* creating dumping file */
  36. $data_file = dirname(__FILE__) . '/vfprintf_variation13_64bit.txt';
  37. if (!($fp = fopen($data_file, 'wt')))
  38. return;
  39. // looping to test vfprintf() with different char octal from the above $format array
  40. // and with octal values from the above $args_array array
  41. $counter = 1;
  42. foreach($formats as $format) {
  43. fprintf($fp, "\n-- Iteration %d --\n",$counter);
  44. vfprintf($fp, $format, $args_array[$counter-1]);
  45. $counter++;
  46. }
  47. fclose($fp);
  48. print_r(file_get_contents($data_file));
  49. echo "\n";
  50. unlink($data_file);
  51. echo "===DONE===\n";
  52. }