Home > front end >  I want to add symbol at random place in string how can i do that?
I want to add symbol at random place in string how can i do that?

Time:07-15

$string = "this is a string biggest string bigger than the string1 string";   
$random_position = rand(0, strlen($string) - 1);
$chars = "           
  • Related