1--TEST--
2Test vprintf() function : basic functionality - bool format
3--FILE--
4<?php
5/* Prototype  : string vprintf(string $format , array $args)
6 * Description: Output a formatted string
7 * Source code: ext/standard/formatted_print.c
8*/
9
10echo "*** Testing vprintf() : basic functionality - using bool format ***\n";
11
12// Initialise all required variables
13$format = "format";
14$format1 = "%b";
15$format2 = "%b %b";
16$format3 = "%b %b %b";
17$arg1 = array(TRUE);
18$arg2 = array(TRUE,FALSE);
19$arg3 = array(TRUE,FALSE,TRUE);
20
21$result = vprintf($format1,$arg1);
22echo "\n";
23var_dump($result);
24
25$result = vprintf($format2,$arg2);
26echo "\n";
27var_dump($result);
28
29$result = vprintf($format3,$arg3);
30echo "\n";
31var_dump($result);
32
33?>
34===DONE===
35--EXPECT--
36*** Testing vprintf() : basic functionality - using bool format ***
371
38int(1)
391 0
40int(3)
411 0 1
42int(5)
43===DONE===
44