Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. replace
  2. $result = strcmp(strtolower($a->$column), strtolower($b->$column));
  3. with
  4. $result = ($a->$column) == $b->$column);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement