PageRenderTime 38ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://github.com/facebook/hiphop-php
PHP | 76 lines | 46 code | 12 blank | 18 comment | 1 complexity | 577fd56f070803218707cab23c8cdce3 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 scientific formats and non-scientific values are passed to
  8. * the '$format' and '$args' arguments of the function
  9. */
  10. <<__EntryPoint>> function main(): void {
  11. echo "*** Testing vfprintf() : scientific formats and non-scientific values ***\n";
  12. // defining array of non-scientific formats
  13. $formats =
  14. '%e %+e %-e
  15. %le %Le %4e %-4e
  16. %10.4e %-10.4e %04e %04.4e
  17. %\'#2e %\'2e %\'$2e %\'_2e
  18. %3$e %4$e %1$e %2$e';
  19. // Arrays of non scientific values for the format defined in $format.
  20. // Each sub array contains non scientific values which correspond to each format in $format
  21. $args_array = varray[
  22. // array of float values
  23. varray[2.2, .2, 10.2,
  24. 123456.234, 123456.234, -1234.6789, +1234.6789,
  25. 20.00, +212.2, -411000000000, 2212.000000000001,
  26. 12345.780, 12.000000011111, -12.00000111111, -123456.234,
  27. 3.33, +4.44, 1.11,-2.22 ],
  28. // array of strings
  29. varray[" ", ' ', 'hello',
  30. '123hello', "123hello", '-123hello', '+123hello',
  31. "\12345678hello", "-\12345678hello", '0123456hello', 'h123456ello',
  32. "1234hello", "hello\0world", "NULL", "true",
  33. "3", "4", '1', '2'],
  34. // different arrays
  35. varray[ varray[0], varray[1, 2], varray[-1, -1],
  36. varray["123"], varray['123'], varray['-123'], varray["-123"],
  37. varray[true], varray[false], varray[TRUE], varray[FALSE],
  38. varray["123hello"], varray["1", "2"], varray['123hello'], darray[12=>"12twelve"],
  39. varray["3"], varray["4"], varray["1"], varray["2"] ],
  40. // array of boolean data
  41. varray[ true, TRUE, false,
  42. TRUE, 0, FALSE, 1,
  43. true, false, TRUE, FALSE,
  44. 0, 1, 1, 0,
  45. 1, TRUE, 0, FALSE],
  46. ];
  47. /* creating dumping file */
  48. $data_file = dirname(__FILE__) . '/vfprintf_variation18.txt';
  49. if (!($fp = fopen($data_file, 'wt')))
  50. return;
  51. // looping to test vfprintf() with different scientific formats from the above $format array
  52. // and with non-scientific values from the above $args_array array
  53. $counter = 1;
  54. foreach($args_array as $args) {
  55. fprintf($fp, "\n-- Iteration %d --\n",$counter);
  56. vfprintf($fp, $formats, $args);
  57. $counter++;
  58. }
  59. fclose($fp);
  60. print_r(file_get_contents($data_file));
  61. echo "\n";
  62. unlink($data_file);
  63. echo "===DONE===\n";
  64. }