PageRenderTime 64ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

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

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