I have assigned values for a multidimensional array as following (in opencart):
$this->data['price_list'][0]['115']['296']= "8.99";
$this->data['price_list'][1]['115']['396']= "8.99";
$this->data['price_list'][2]['115']['446']= "8.99";
$this->data['price_list'][3]['115']['496']= "8.99";
$this->data['price_list'][4]['115']['596']= "12.99";
$this->data['price_list'][5]['115']['796']= "";
$this->data['price_list'][6]['115']['996']= "";
$this->data['price_list'][7]['115']['1196']= "";
$this->data['price_list'][8]['140']['296']= "12.99";
$this->data['price_list'][9]['140']['396']= "12.99";
$this->data['price_list'][10]['140']['446']= "12.99";
I have two variables: $height and $width. I want to check in the above array as following:
let, $height= 140, $ width= 396. I want the value 12.99. How I'll check this?