Archives for December 2008
PHP Recursive Multidimensional Array Flatten Using SPL
function array_flatten_recursive($array) {
if($array) {
$flat = array();
foreach(new RecursiveIteratorIterator(new RecursiveArrayIterator($array), RecursiveIteratorIterator::SELF_FIRST) as $key=>$value) {
if(!is_array($value)) {
$flat[] = $value;
}
}
return $flat;
} else {
[...]
PriceAdvance Passes 50,000 Firefox Installs
The holiday shopping season has been really good to us!
Holiday Spending
“For the holiday season through December 12, $19.44 billion has been spent online, essentially the same level compared to the corresponding days last year. For the twelve days beginning with December 1 (Cyber Monday), the kick-off to the heaviest part of the online shopping season, sales totaled $8.26 billion, up 3 percent versus year ago. [...]
Whats new…
I was recently promoted to the Director of Back end Development for Connected Ventures. I now oversee all coding for College Humor, Bustedtees and Todays BIG Thing. The promotion came about a month ago when Kunal Shah announced he would be leaving CV to go out to San Fran to do a startup. His last [...]
Posts