- var_export: documentation ( source)
- array_flip: documentation ( source)
- array_replace: documentation ( source)
<?php
$aShips = ['0_204' => 1, '0_205' => 2, '0_206' => 3, '0_207' => 4];
$order = ["0_206", "0_205", "0_204", "0_207"];
var_export(array_replace(array_flip($order), $aShips));