Yngvarr

Generation

generate functionThu, 09 Feb 2023

shuffle string

function shuffle($str) { $arr = explode(' ', $str); shuffle($arr); return implode(' ', $arr); }

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