PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://github.com/facebook/hiphop-php
PHP | 29 lines | 29 code | 0 blank | 0 comment | 0 complexity | 3fcb35d2bc1dc0cd6f077aedbb5eecf0 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. <<__EntryPoint>> function main(): void {
  3. $string_variation = varray[ "%5s", "%-5s", "%05s", "%'#5s" ];
  4. $strings = varray[ NULL, "abc", 'aaa' ];
  5. /* creating dumping file */
  6. $data_file = dirname(__FILE__) . '/fprintf_variation_009.phpt.txt';
  7. if (!($fp = fopen($data_file, 'wt')))
  8. return;
  9. $counter = 1;
  10. /* string type variations */
  11. fprintf($fp, "\n*** Testing fprintf() for string types ***\n");
  12. foreach( $string_variation as $string_var ) {
  13. fprintf( $fp, "\n-- Iteration %d --\n",$counter);
  14. foreach( $strings as $str ) {
  15. fprintf( $fp, "\n");
  16. fprintf( $fp, $string_var, $str );
  17. }
  18. $counter++;
  19. }
  20. fclose($fp);
  21. print_r(file_get_contents($data_file));
  22. echo "\nDone";
  23. unlink($data_file);
  24. }