Yngvarr

Generation

generate functionThu, 09 Feb 2023

shuffle string

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

Questions about programming?Chat with your personal AI assistant