PageRenderTime 41ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://github.com/facebook/hiphop-php
PHP | 77 lines | 46 code | 13 blank | 18 comment | 1 complexity | 4a701de642572483b945cb4c7faf8f36 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 unsigned formats and signed values and other types of values
  8. * are passed to the '$format' and '$args' arguments of the function
  9. */
  10. <<__EntryPoint>> function main(): void {
  11. echo "*** Testing vfprintf() : unsigned formats and signed & other types of values ***\n";
  12. // defining array of unsigned formats
  13. $formats =
  14. '%u %+u %-u
  15. %lu %Lu %4u %-4u
  16. %10.4u %-10.4u %.4u
  17. %\'#2u %\'2u %\'$2u %\'_2u
  18. %3$u %4$u %1$u %2$u';
  19. // Arrays of signed and other type of values for the format defined in $format.
  20. // Each sub array contains signed 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,
  25. +2e10, +2e12, +22e+12,
  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", '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[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, TRUE, FALSE,
  44. 0, 1, 1, 0,
  45. 1, TRUE, 0, FALSE],
  46. ];
  47. /* creating dumping file */
  48. $data_file = dirname(__FILE__) . '/vfprintf_variation16_64bit.txt';
  49. if (!($fp = fopen($data_file, 'wt')))
  50. return;
  51. // looping to test vfprintf() with different unsigned formats from the above $format array
  52. // and with signed and other types of 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. }