1--TEST-- 2Test vprintf() function : basic functionality - bool format 3--FILE-- 4<?php 5echo "*** Testing vprintf() : basic functionality - using bool format ***\n"; 6 7// Initialise all required variables 8$format = "format"; 9$format1 = "%b"; 10$format2 = "%b %b"; 11$format3 = "%b %b %b"; 12$arg1 = array(TRUE); 13$arg2 = array(TRUE,FALSE); 14$arg3 = array(TRUE,FALSE,TRUE); 15 16$result = vprintf($format1,$arg1); 17echo "\n"; 18var_dump($result); 19 20$result = vprintf($format2,$arg2); 21echo "\n"; 22var_dump($result); 23 24$result = vprintf($format3,$arg3); 25echo "\n"; 26var_dump($result); 27 28?> 29--EXPECT-- 30*** Testing vprintf() : basic functionality - using bool format *** 311 32int(1) 331 0 34int(3) 351 0 1 36int(5) 37