×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: Dylan Lopez
Added: Nov 23, 2017 9:58 AM
Views: 2604
Tags: no tags
  1. sort() - sort arrays in ascending order
  2. rsort() - sort arrays in descending order
  3. asort() - sort associative arrays in ascending order, according to the value
  4. ksort() - sort associative arrays in ascending order, according to the key
  5. arsort() - sort associative arrays in descending order, according to the value
  6. krsort() - sort associative arrays in descending order, according to the key
  7.