Can anyone help me with a solution that pulls the position and value of a random character from a given string using PHP. For example I have a a string variable $string = \
Since noone mentinoned any utf8 (multibyte) safe method, here is mine:
mb_internal_encoding("UTF-8"); $possible="aábcdeéfghiíjklmnoóöópqrstuúüűvwxyzAÁBCDEÉFGHIÍJKLMNOÓÖŐPQRSTUÚVWXYZ"; $char=mb_substr($possible,rand(0, mb_strlen($possible) - 1),1);