Functions Php



Using printf() to Format a List of Product Prices


$products = array (
      "A"=>2.4,
      "B"=>4,
      "C"=>80.6
      );
print "
";
printf ("%-20s%23s\n", "Name", "Price");
printf ("%'-43s\n", "");
foreach ( $products as $Key=>$val ) {
  printf ("%-20s%20.2f\n", $Key, $val);
}
print "
";
?>