Lines Matching refs:printf
2 Test printf() function : basic functionality - float format
5 echo "*** Testing printf() : basic functionality - using float format ***\n";
22 echo "\n-- Calling printf() with no arguments--\n";
23 $result = printf($format);
27 echo "\n-- Calling printf() with one arguments--\n";
28 $result = printf($format1, $arg1);
31 $result = printf($format11, $arg1);
35 echo "\n-- Calling printf() with two arguments--\n";
36 $result = printf($format2, $arg1, $arg2);
39 $result = printf($format22, $arg1, $arg2);
43 echo "\n-- Calling printf() with three arguments--\n";
44 $result = printf($format3, $arg1, $arg2, $arg3);
47 $result = printf($format33, $arg1, $arg2, $arg3);
53 *** Testing printf() : basic functionality - using float format ***
55 -- Calling printf() with no arguments--
59 -- Calling printf() with one arguments--
65 -- Calling printf() with two arguments--
71 -- Calling printf() with three arguments--