¡@

Home 

php Programming Glossary: array_sorted

Sort an array by using the same order of another one

http://stackoverflow.com/questions/8885412/sort-an-array-by-using-the-same-order-of-another-one

that should be used as a model to order the first array array_sorted array AA KK AKs ... here the cards are not repeated I'd like.. repeated I'd like to re order array1 with the sort used in array_sorted it should return an array like array1 array AA AA J9s 65s 32s.. instead of the values so we'll flip them with array_flip. array_sorted array_flip array 'AA' 'KK' 'AKs' ... array 'AA' 0 'KK' 1 'AKs'..