I need to get this output from array
$properties = array(
    1 => array('one', 'two'),
    2 => array('red', 'blue'),
    3 => array('active', 'not-active'),
);
- one_red_active
- one_red_not-active
- one_blue_active
- one_blue_not-active
- two_red_active
- two_red_not-active
- two_blue_active
- two_blue_not-active
Thx!
 
    