#array
4 posts tagged array. Clear filter
-
How to Cast an Array to an Object with PHP
It's short and sweet. $objfromarray = (object)['key'='val']; echo $objfromarray-key;
-
How to Get a Random Item from an Array in PHP
Use this snippet for grabbing a random item from an array in php $fruits = ['apple', 'banana', 'carrot', 'date', 'elderberry']; echo arrayrand(arrayflip($fruits)); // = 'banana' PHP's arrayflip...
-
How Beautiful is Ruby?
Working with Ruby and in particular Rails, it's easy to take the beauty inherent in the language for granted. I mean look at this code. If you read it aloud to yourself, it reads like an english...
-
Descending Sort By in Model For Active Record Hash on Created_at attribute
If you have a couple collections from the database and you want to sort it without the help of Active Record, take a look at the sort\by method on Array type. I've used this before when I have a...