Lines Matching refs:printf
2 Test printf() function : basic functionality - char format
5 echo "*** Testing printf() : basic functionality - using char format ***\n";
17 echo "\n-- Calling printf() with no arguments --\n";
18 $result = printf($format);
22 echo "\n-- Calling printf() with one arguments --\n";
23 $result = printf($format1, $arg1);
27 echo "\n-- Calling printf() with two arguments --\n";
28 $result = printf($format2, $arg1, $arg2);
32 echo "\n-- Calling printf() with three arguments --\n";
33 $result = printf($format3, $arg1, $arg2, $arg3);
38 *** Testing printf() : basic functionality - using char format ***
40 -- Calling printf() with no arguments --
44 -- Calling printf() with one arguments --
48 -- Calling printf() with two arguments --
52 -- Calling printf() with three arguments --