--TEST-- Test sprintf() function : usage variations - unexpected values for format argument --FILE-- 'red', 'item' => 'pen'), // null data NULL, null, // boolean data true, false, TRUE, FALSE, // empty data "", '', // object data new sample(), // undefined data @$undefined_var, // unset data @$unset_var, // resource data $file_handle ); // loop through each element of the array for format $count = 1; foreach($values as $value) { echo "\n-- Iteration $count --\n"; // with default argument var_dump( sprintf($value) ); // with two arguments var_dump( sprintf($value, $arg1) ); // with three arguments var_dump( sprintf($value, $arg1, $arg2) ); $count++; }; // close the resource fclose($file_handle); echo "Done"; ?> --EXPECTF-- *** Testing sprintf() : with unexpected values for format argument *** -- Iteration 1 -- unicode(1) "0" unicode(1) "0" unicode(1) "0" -- Iteration 2 -- unicode(1) "1" unicode(1) "1" unicode(1) "1" -- Iteration 3 -- unicode(5) "12345" unicode(5) "12345" unicode(5) "12345" -- Iteration 4 -- unicode(5) "-2345" unicode(5) "-2345" unicode(5) "-2345" -- Iteration 5 -- unicode(4) "10.5" unicode(4) "10.5" unicode(4) "10.5" -- Iteration 6 -- unicode(5) "-10.5" unicode(5) "-10.5" unicode(5) "-10.5" -- Iteration 7 -- unicode(12) "101234567000" unicode(12) "101234567000" unicode(12) "101234567000" -- Iteration 8 -- unicode(13) "1.07654321E-9" unicode(13) "1.07654321E-9" unicode(13) "1.07654321E-9" -- Iteration 9 -- unicode(3) "0.5" unicode(3) "0.5" unicode(3) "0.5" -- Iteration 10 -- Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" -- Iteration 11 -- Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" -- Iteration 12 -- Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" -- Iteration 13 -- Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" -- Iteration 14 -- Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" Notice: Array to string conversion in %s on line %d unicode(5) "Array" -- Iteration 15 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 16 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 17 -- unicode(1) "1" unicode(1) "1" unicode(1) "1" -- Iteration 18 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 19 -- unicode(1) "1" unicode(1) "1" unicode(1) "1" -- Iteration 20 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 21 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 22 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 23 -- unicode(6) "Object" unicode(6) "Object" unicode(6) "Object" -- Iteration 24 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 25 -- unicode(0) "" unicode(0) "" unicode(0) "" -- Iteration 26 -- unicode(%d) "Resource id #%d" unicode(%d) "Resource id #%d" unicode(%d) "Resource id #%d" Done