Guest User

Untitled

a guest
Nov 15th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function comparatitulo ($x, $y) {
  2. if ($x['nombre'] == $y['nombre']){
  3. return 0;
  4. }elseif ($x['nombre'] < $y['nombre']){
  5. return -1;
  6. }else{
  7. return 1;
  8. }
  9. }
  10. uasort ($_SESSION['lista'], 'comparatitulo');
  11. break;
Add Comment
Please, Sign In to add comment