<html lang="en">
<head>
<meta charset="utf-8">
<title>Apply Multiple Placeholders to Same Argument with sprintf()</title>
</head>
<body>
// Sample string
$str = 'star';
$format = 'The polar %1$s is the brightest %1$s in the sky.';
// Formatting and print the string
echo sprintf($format, $str);
</body>
</html>