Search multi-dimensional array
Spent a bit some time while trying to find native method in PHP that would allow me to search multidimensional array. Looks like PHP guys havn’t thought about it. I had no way but to write my own. If you guys have the same need you are free to use it.
$array = array([0] => array('color' => 'red')); //search array example array_search_exp($array,"shape=='circle' AND color=='blue'"); function array_search_exp($array, $expression, $as_indexes = false) { if($expression == '') return $array; if (!is_array($array) || !preg_match('/[a-z_][\w_]*(?:==|!=|>|<|>=|<=).+/', $expression)) return null; $result = array(); $expression = preg_replace("/([^\s]+?)(=|<|>|!)/", "\$a['$1']$2", $expression); foreach ( $array as $key => $a ) { if (eval( "return $expression;")) $result[] = ($as_indexes) ? $key : $a; } return (count($result) > 0) ? $result : null; }
Dima Svirid
Software architect. Ajax/Javascript, HTML5, Android, iPhone/iPad, JAVA, PHP, Cold Fusion, SQL, Air, Flash, Open source software, Frameworks
SEARCH ARTICLES & TUTORIALS
MOST POPULAR TUTORIALS
Generating PDF Documents with Adobe Air Javascript SDK and jQuery
I am not a Flex guy and I don't think I will ever be. While searching [...]
Search Engine Optimization - Do It Yourself!
This is Part 1 of "Search Engine Optimization – Do It Yourself!" ser[...]
jQuery Object Oriented Plugins
Many people have asked me, if jQuery is object oriented and how they c[...]
Spring-MVC Tutorial (Part 1)
Overview This document is a step-by-step guide on how to de[...]
Animated scroll to anchor method with jQuery
It's a one line but can add a really nice effect to your website. f[...]
RECENT POSTS
How to calibrate Samsung Galaxy battery
There is no guarantee that this method will work for you. However it d[...]
Real Estate Social Network new Toronto Startup
Wanted to write for a long time about a new startup for Real Estate ag[...]
Eclipse Keyboard Shortcuts for Developers
Eclipse Navigation Shortcuts Every Java Programmer Should Know Ctrl [...]
Duplicated Content
This is Part 4 of "Search Engine Optimization – Do It Yourself!" ser[...]
301 Redirect
There are many ways how you can do 301 redirect, I will mention just t[...]




