i have two columns in csv file Name and Phone . If i given phone number as a variable $searchStr = "6059574150"; it has to find number in csv file and i need that contact name to get access dynamicaly like this $data['Name'] instead of $data['0']
MY php code
$header = array();
$final_result = array();
$file = fopen('example.csv', 'r');
if($file){
$row = 1;
while ($data = fgetcsv($file, 10000, ",")){
    if($row == 1){
        $header = array_values($data);
    }
    else{
        $final_result[] = array_combine($header, array_values($data));
    }
$row++;
}
}
    echo "<pre>";
    print_r($final_result);
my output is like this
Array
 (
[0] => Array
    (
        [Names] => MICHAEL
        [Phone] => 6059342614
    )
[1] => Array
    (
        [Names] => GLENN
        [Phone] => 6056296061
    )
 )
how to directly access column ? like this $data['Name']