Yngvarr

Generation

generate functionThu, 09 Feb 2023

shuffle string

function shuffleString($str){ $arr = str_split($str); shuffle($arr); return implode($arr); } shuffleString("hello");

Want to kickstart your project?Use the new AI Studio to create your code