{ php } | |
array_search_recursive | |
date | 2004 |
update | 2004 |
code |
<?php
|
description | search for a value in an array recursively and return the keys to first match in an onedimensional array where every value is the key of the netxt depth returns false if nothing is found |
syntax |
<?php
|
explanation | $search is the needle, $array is the array to search in suppose you have the array:
<?php
and you was searchiong for "Andi":
<?php
you would get:
<?php
|