<?php
$myArray = ['yellow', 'green', 'red'];
$myString = 'banana is ?, apple is ?, tomato is ?';
echo preg_replace_callback(
'/\?/',
function() use ($myArray) {
static $i = 0;
return $myArray[$i++];
},
$myString
);
- 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
preferences:
52.74 ms | 406 KiB | 5 Q