<?php

$firstarray=array(14,30,20);
$secondarray=array(4,2,3);

array_multisort($firstarray, $secondarray);

var_dump($firstarray, $secondarray);