Can i do this in PHP, or any others way around ? I want to refer to another element in the array.
$config = array(
'factory-code' => array(
'01', '02'
),
'commodity-filter' => array(
'factory' => array(
'steel' => array( $this->factory-code ),
),
'branch' => array(
'steel' => array( $this->factory-code, '09' ),
)
)
);