<? $string="Вася::Петров::25::"; $array=explode("::",$string); echo "Имя: ".$array[0].", фамилия: ".$array[1].", возраст: ".$array[2]; ?>