PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://github.com/facebook/hiphop-php
PHP | 80 lines | 47 code | 15 blank | 18 comment | 1 complexity | 5f65396108e305cdd29e1d877dbfde44 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 string formats and non-string values are passed to
  8. * the '$format' and '$args' arguments of the function
  9. */
  10. <<__EntryPoint>> function main(): void {
  11. error_reporting(E_ALL & ~E_NOTICE);
  12. echo "*** Testing vfprintf() : string formats and non-string values ***\n";
  13. // defining array of string formats
  14. $formats =
  15. '%s %+s %-s
  16. %ls %Ls %4s %-4s
  17. %10.4s %-10.4s %04s %04.4s
  18. %\'#2s %\'2s %\'$2s %\'_2s
  19. %3$s %4$s %1$s %2$s';
  20. // Arrays of non string values for the format defined in $format.
  21. // Each sub array contains non string values which correspond to each format in $format
  22. $args_array = varray[
  23. // array of float values
  24. varray[2.2, .2, 10.2,
  25. 123456.234, 123456.234, -1234.6789, +1234.6789,
  26. 2.1234567e10, +2.7654321e10, -2.7654321e10,
  27. 12345.780, 12.000000011111, -12.00000111111, -123456.234,
  28. 3.33, +4.44, 1.11,-2.22 ],
  29. // array of int values
  30. varray[2, -2, +2,
  31. 123456, 123456234, -12346789, +12346789,
  32. 123200, +20000, -40000, 22212,
  33. 12345780, 1211111, -12111111, -12345634,
  34. 3, +4, 1,-2 ],
  35. // different arrays
  36. varray[ varray[0], varray[1, 2], varray[-1, -1],
  37. varray["123"], varray['123'], varray['-123'], varray["-123"],
  38. varray[true], varray[false], varray[TRUE], varray[FALSE],
  39. varray["123hello"], varray["1", "2"], varray['123hello'], darray[12=>"12twelve"],
  40. varray["3"], varray["4"], varray["1"], varray["2"] ],
  41. // array of boolean data
  42. varray[ true, TRUE, false,
  43. TRUE, 0, FALSE, 1,
  44. true, false, TRUE, FALSE,
  45. 0, 1, 1, 0,
  46. 1, TRUE, 0, FALSE],
  47. ];
  48. /* creating dumping file */
  49. $data_file = dirname(__FILE__) . '/vfprintf_variation8.txt';
  50. if (!($fp = fopen($data_file, 'wt')))
  51. return;
  52. // looping to test vfprintf() with different string formats from the above $format array
  53. // and with non-string values from the above $args_array array
  54. $counter = 1;
  55. foreach($args_array as $args) {
  56. fprintf($fp, "\n-- Iteration %d --\n",$counter);
  57. vfprintf($fp, $formats, $args);
  58. $counter++;
  59. }
  60. fclose($fp);
  61. print_r(file_get_contents($data_file));
  62. echo "\n";
  63. unlink($data_file);
  64. echo "===DONE===\n";
  65. }