1--TEST-- 2Test vprintf() function : basic functionality - octal format 3--FILE-- 4<?php 5echo "*** Testing vprintf() : basic functionality - using octal format ***\n"; 6 7// Initialise all required variables 8$format = "format"; 9$format1 = "%o"; 10$format2 = "%o %o"; 11$format3 = "%o %o %o"; 12$arg1 = array(021); 13$arg2 = array(021,0347); 14$arg3 = array(021,0347,0567); 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 octal format *** 3121 32int(2) 3321 347 34int(6) 3521 347 567 36int(10) 37