Lines Matching refs:printf
2 Test printf() function : basic functionality - hexadecimal format
5 echo "*** Testing printf() : basic functionality - using hexadecimal format ***\n";
23 echo "\n-- Calling printf() with no arguments --\n";
24 $result = printf($format);
28 echo "\n-- Calling printf() with one arguments --\n";
29 $result = printf($format1, $arg1);
32 $result = printf($format11, $arg1);
36 echo "\n-- Calling printf() with two arguments --\n";
37 $result = printf($format2, $arg1, $arg2);
40 $result = printf($format22, $arg1, $arg2);
44 echo "\n-- Calling printf() with three arguments --\n";
45 $result = printf($format3, $arg1, $arg2, $arg3);
48 $result = printf($format33, $arg1, $arg2, $arg3);
54 *** Testing printf() : basic functionality - using hexadecimal format ***
56 -- Calling printf() with no arguments --
60 -- Calling printf() with one arguments --
66 -- Calling printf() with two arguments --
72 -- Calling printf() with three arguments --