Lines Matching refs:printf
2 Test printf() function : basic functionality - unsigned format
11 echo "*** Testing printf() : basic functionality - using unsigned 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);
33 echo "\n-- Calling printf() with two arguments --\n";
34 $result = printf($format2, $arg1, $arg2);
38 echo "\n-- Calling printf() with three arguments --\n";
39 $result = printf($format3, $arg1, $arg2, $arg3);
45 *** Testing printf() : basic functionality - using unsigned format ***
47 -- Calling printf() with no arguments --
51 -- Calling printf() with one arguments --
55 -- Calling printf() with two arguments --
59 -- Calling printf() with three arguments --