PHP junta dois nomes de variáveis

Eu tenho um script php que recebe um$_POST para decidir qual matriz retornar. Ex

$n = $_POST['n']; // 1, 2 or 3

$a1 = array ('something', 'something else', 'another thing');

$a2 = array ('something 2', 'something else 2', 'another thing 2');

$a3 = array ('something 3', 'something else 3', 'another thing 3');

gora, quero obter o array que corresponde ao$n value, digamos"2".

Como posso dizerecho $a . $n para obter$a2

Obrigado

questionAnswers(2)

yourAnswerToTheQuestion