/hphp/test/zend/good/ext/standard/tests/strings/fprintf_variation_008_64bit.php
http://github.com/facebook/hiphop-php · PHP · 24 lines · 24 code · 0 blank · 0 comment · 0 complexity · 48310cd2d0c7feffe8116b6925278136 MD5 · raw file
- <?hh
- <<__EntryPoint>> function main(): void {
- $int_variation = varray[ "%d", "%-d", "%+d", "%7.2d", "%-7.2d", "%07.2d", "%-07.2d", "%'#7.2d" ];
- $int_numbers = varray[ 0, 1, -1, 2.7, -2.7, 23333333, -23333333, "1234" ];
- /* creating dumping file */
- $data_file = dirname(__FILE__) . '/fprintf_variation_008_64bit.phpt.txt';
- if (!($fp = fopen($data_file, 'wt')))
- return;
- /* hexadecimal type variations */
- fprintf($fp, "\n*** Testing fprintf() for hexadecimals ***\n");
- foreach( $int_numbers as $hexa_num ) {
- fprintf( $fp, "\n");
- fprintf( $fp, "%x", $hexa_num );
- }
- fclose($fp);
- print_r(file_get_contents($data_file));
- echo "\nDone";
- unlink($data_file);
- }