PageRenderTime 79ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://github.com/facebook/hiphop-php
PHP | 62 lines | 38 code | 10 blank | 14 comment | 1 complexity | c001ec0b9456ef394d9d834f9f05b770 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 float formats and float values are passed to
  8. * the '$format' and '$args' arguments of the function
  9. */
  10. <<__EntryPoint>> function main(): void {
  11. echo "*** Testing vfprintf() : int formats with float values ***\n";
  12. // defining array of float formats
  13. $formats = varray[
  14. "%f",
  15. "%+f %-f %F",
  16. "%lf %Lf, %4f %-4f",
  17. "%10.4f %-10.4F %04f %04.4f",
  18. "%'#2f %'2f %'$2f %'_2f",
  19. "%f %f %f %f",
  20. "% %%f f%",
  21. '%3$f %4$f %1$f %2$f'
  22. ];
  23. // Arrays of float values for the format defined in $format.
  24. // Each sub array contains float values which correspond to each format string in $format
  25. $args_array = varray[
  26. varray[0.0],
  27. varray[-0.1, +0.1, +10.0000006],
  28. varray[2147483649, -2147483647, +2147483640, -2147483640],
  29. varray[2e5, 2e-5, -2e5, -2e-5],
  30. varray[0.2E5, -0.2e40, 0.2E-20, 0.2E+20],
  31. varray[0x123b, 0xfAb, 0123, 01293],
  32. varray[1234.1234, -5678.5678, 2345.2345],
  33. varray[3.33, 4.44, 1.11, 2.22]
  34. ];
  35. /* creating dumping file */
  36. $data_file = dirname(__FILE__) . '/vfprintf_variation5.txt';
  37. if (!($fp = fopen($data_file, 'wt')))
  38. return;
  39. // looping to test vprintf() with different float formats from the above $format array
  40. // and with float 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. }