Answers for "search array key value"

PHP
0

how to lookup value object php

function lookup($array, $key) {

    //loop through all values in array
    foreach($array as $values) {

        //if 'key' value matches `$key`, return 'value' value.
        if($values['key'] == $key) {
            return $values['value'];
        }

    }

    //if nothing has been returned, return empty string
    return "";
}
Posted by: Guest on October-30-2020

Code answers related to "search array key value"

Browse Popular Code Answers by Language