/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
- <?hh
- <<__EntryPoint>> function main(): void {
- $char_variation = varray[ 'a', "a", 67, -67, 99 ];
- /* creating dumping file */
- $data_file = dirname(__FILE__) . '/fprintf_variation_004.phpt.txt';
- if (!($fp = fopen($data_file, 'wt')))
- return;
- /* char type variations */
- fprintf($fp, "\n*** Testing fprintf() for chars ***\n");
- foreach( $char_variation as $char ) {
- fprintf( $fp, "\n");
- fprintf( $fp,"%c", $char );
- }
- fclose($fp);
- print_r(file_get_contents($data_file));
- echo "\nDone";
- unlink($data_file);
- }