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

http://github.com/facebook/hiphop-php · PHP · 23 lines · 16 code · 5 blank · 2 comment · 2 complexity · 6f08f61819077e863f5eb269f77663e8 MD5 · raw file

  1. <?hh
  2. <<__EntryPoint>> function main(): void {
  3. $char_variation = varray[ 'a', "a", 67, -67, 99 ];
  4. /* creating dumping file */
  5. $data_file = dirname(__FILE__) . '/fprintf_variation_004.phpt.txt';
  6. if (!($fp = fopen($data_file, 'wt')))
  7. return;
  8. /* char type variations */
  9. fprintf($fp, "\n*** Testing fprintf() for chars ***\n");
  10. foreach( $char_variation as $char ) {
  11. fprintf( $fp, "\n");
  12. fprintf( $fp,"%c", $char );
  13. }
  14. fclose($fp);
  15. print_r(file_get_contents($data_file));
  16. echo "\nDone";
  17. unlink($data_file);
  18. }