- preg_replace_callback: documentation ( source)
- rand: documentation ( source)
<?php
echo preg_replace_callback(
'/^.|.\K./',
fn() => rand(0,9),
'1234567'
);
echo "\n---\n";
echo preg_replace_callback(
'/.\K./',
fn() => rand(0,9),
'1234567'
);