PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Yeah PHP has no unordered lists. If you want to compare two array for equality, regardless of the ordering you need to grab the array_values() for each array, sort() those values and the compare for equality with the "==" operator.