1--TEST-- 2Test vfprintf() function : usage variations - octal formats with non-octal values 3--SKIPIF-- 4<?php 5if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); 6?> 7--FILE-- 8<?php 9/* Prototype : int vfprintf ( resource $handle , string $format , array $args ) 10 * Description: Write a formatted string to a stream 11 * Source code: ext/standard/formatted_print.c 12*/ 13 14/* 15 * Test vfprintf() when different octal formats and non-octal values are passed to 16 * the '$format' and '$args' arguments of the function 17*/ 18 19echo "*** Testing vfprintf() : octal formats and non-octal values ***\n"; 20 21// defining array of octal formats 22$formats = 23 '%o %+o %-o 24 %lo %Lo %4o %-4o 25 %10.4o %-10.4o %.4o 26 %\'#2o %\'2o %\'$2o %\'_2o 27 %3$o %4$o %1$o %2$o'; 28 29// Arrays of non octal values for the format defined in $format. 30// Each sub array contains non octal values which correspond to each format in $format 31$args_array = array( 32 33 // array of float values 34 array(2.2, .2, 10.2, 35 123456.234, 123456.234, -1234.6789, +1234.6789, 36 2e10, +2e12, 22e+12, 37 12345.780, 12.000000011111, -12.00000111111, -123456.234, 38 3.33, +4.44, 1.11,-2.22 ), 39 40 // array of int values 41 array(2, -2, +2, 42 123456, 123456234, -12346789, +12346789, 43 123200, +20000, 22212, 44 12345780, 1211111, -12111111, -12345634, 45 3, +4, 1,-2 ), 46 47 // array of strings 48 array(" ", ' ', 'hello', 49 '123hello', "123hello", '-123hello', '+123hello', 50 "\12345678hello", "-\12345678hello", 'h123456ello', 51 "1234hello", "hello\0world", "NULL", "true", 52 "3", "4", '1', '2'), 53 54 // different arrays 55 array( array(0), array(1, 2), array(-1, -1), 56 array("123"), array('123'), array('-123'), array("-123"), 57 array(true), array(false), array(FALSE), 58 array("123hello"), array("1", "2"), array('123hello'), array(12=>"12twelve"), 59 array("3"), array("4"), array("1"), array("2") ), 60 61 // array of boolean data 62 array( true, TRUE, false, 63 TRUE, 0, FALSE, 1, 64 true, false, TRUE, 65 0, 1, 1, 0, 66 1, TRUE, 0, FALSE), 67 68); 69 70/* creating dumping file */ 71$data_file = dirname(__FILE__) . '/vfprintf_variation12.txt'; 72if (!($fp = fopen($data_file, 'wt'))) 73 return; 74 75// looping to test vfprintf() with different octal formats from the above $format array 76// and with non-octal values from the above $args_array array 77$counter = 1; 78foreach($args_array as $args) { 79 fprintf($fp, "\n-- Iteration %d --\n",$counter); 80 vfprintf($fp, $formats, $args); 81 $counter++; 82} 83 84fclose($fp); 85print_r(file_get_contents($data_file)); 86echo "\n"; 87 88unlink($data_file); 89 90?> 91===DONE=== 92--EXPECT-- 93*** Testing vfprintf() : octal formats and non-octal values *** 94 95-- Iteration 1 -- 962 0 12 97 361100 o 37777775456 2322 98 99 30071 14 37777777764 37777416700 100 12 361100 2 0 101-- Iteration 2 -- 1022 37777777776 2 103 361100 o 37720715133 57062645 104 105 57060664 4475347 37721631371 37720717336 106 2 361100 2 37777777776 107-- Iteration 3 -- 1080 0 0 109 173 o 37777777605 173 110 111 2322 0 $0 _0 112 0 173 0 0 113-- Iteration 4 -- 1141 1 1 115 1 o 1 1 116 117 #1 1 $1 _1 118 1 1 1 1 119-- Iteration 5 -- 1201 1 0 121 1 o 0 1 122 123 #0 1 $1 _0 124 0 1 1 1 125===DONE=== 126