<?php $randoms = array_flip([ "Name", "Think", "Person", "Apple", "Orange", "bananna" ]); $string = 'this {random} is {random} and {random} obviously.'; echo preg_replace_callback( '~\{random}~', function() use ($randoms) { return array_rand($randoms); }, $string );
You have javascript disabled. You will not be able to edit any code.