Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
kohkimakimoto committed Dec 2, 2013
1 parent de72e71 commit 0db28ed
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ print_r($earray->sort("details/position")->toArray()); // sort by details/posit

// Result
// array("a" => array(...), "b" => array(...), "c" => array(...), "d" => array(...), ...)

print_r($earray->rsort("details/position")->toArray()); // reverse sort by details/position

// Result
// array("f" => array(...), "e" => array(...), "d" => array(...), "c" => array(...), ...)



```

### Using like a normal array
Expand Down

0 comments on commit 0db28ed

Please sign in to comment.