PHP - Output and String Handling
You want to create a formatted string showing a product's name left-aligned in 10 spaces and its price right-aligned in 8 spaces with 2 decimals. Which
sprintf format string is correct?$product = "Pen";
$price = 1.5;
$result = sprintf("...", $product, $price);
