- Output for 8.1.32, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- banana is yellow, apple is green, tomato is red
<?php
$myArray = ['yellow', 'green', 'red', 'purple'];
$myString = 'banana is ?, apple is ?, tomato is ?';
vprintf(
str_replace('?', '%s', $myString),
$myArray
);