Problem with array_search

1

I have array below that is giving a problem.

When I give a search he only seeks some values he is not finding the 2018-06-11, 2018-06-18 and the 2018-06-26

The rest works perfectly

$hoje = "2018-06-11";
 $diario = array(
    "0.25" => "2018-06-11",
    "0.35" => "2018-06-12",
    "0.38" => "2018-06-13",
    "0.50" => "2018-06-14",
    "0.00" => "2018-06-15",
    "0.25" => "2018-06-18",
    "0.37" => "2018-06-19",
    "0.25" => "2018-06-20",
    "0.23" => "2018-06-21",
    "0.45" => "2018-06-22",
    "0.33" => "2018-06-25",
    "0.28" => "2018-06-26",
    "0.40" => "2018-06-27",
    "0.31" => "2018-06-28",
    "0.28" => "2018-06-29",
    "0.32" => "2018-07-03"
    );


echo $lucrohoje = array_search($hoje, $diario);
    
asked by anonymous 03.07.2018 / 15:46

0 answers