Created
September 6, 2014 04:07
-
-
Save RikkiGibson/64c118597e1a7dadd6e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$filter1 = $data | |
->where(function($row) | |
{ | |
return $row['price'] > 90 && $row['price'] < 99; | |
}) | |
->orderByDescending(function($row) | |
{ | |
return $row['id']; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't even remember what language this is