PHP Convertid Back en numéro

$array = [1, 2, 3, 4];
$integerIDs = implode('', $array);	 // 1234
Mysterious Macaque