$string = "One two three four five six seven";
Result i want : One two three four five six seven
$xx = preg_replace_callback(
'//',
function ($addtag) {
return "".$addtag[0];
},
$string
);
echo $xx;
Result i want : One two three four five six seven
Programing Coderfunda November 11, 2023 No comments
0 comments:
Post a Comment
Thanks