ID: 9633 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: Unknown/Other Function Description: sort() not working Previous Comments: --------------------------------------------------------------------------- [2001-03-08 13:43:59] [EMAIL PROTECTED] I have an array with random number of elements. I analyse each value (by random selection) and unset it after. In one case, If I unset the first element of my array with 2 elements, sort function does not slide value of the second element to the first element. (sorry for my english). Exemple : <?PHP $tb = array (5, 18, 11); echo "Values: [0]=$tb[0] [1]=$tb[1] [2]=$tb[2]<BR>"; unset ($tb[0]); echo "After unset: [0]=$tb[0] [1]=$tb[1] [2]=$tb[2]<BR>"; sort ($tb); echo "After sort: [0]=$tb[0] [1]=$tb[1] [2]=$tb[2]<BR>"; unset ($tb[0]); echo "After unset: [0]=$tb[0] [1]=$tb[1]<BR>"; sort ($tb); echo "After sort: [0]=$tb[0] [1]=$tb[1]"; ?> I resolved this trouble by calling implode and explode functions. --------------------------------------------------------------------------- Full Bug description available at: http://bugs.php.net/?id=9633 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]