How to sort an 1st array with 2nd array which has sorted keys in 2nd array without using any loop.
1st Array.
$chunk = array(
                [0] => Array
                    (
                        [id] => 212
                        [order] => 1
                        [title] => fdfdfdfdf
                    )
                [1] => Array
                    (
                        [id] => 5
                        [order] => 2
                        [title] => 
                    )
                [2] => Array
                    (
                        [id] => 781
                        [order] => 3
                        [title] => 
                    )
            )
2nd array with sorted keys of 1st array.
$sort = array
    (
        [2] => 2
        [0] => 0
        [1] => 1
    )