PageRenderTime 99ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/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
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. $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. }