I have array of array and I just need to rearrange array according to me. Here is the output of my array.
Array
(
[36736] => Array
(
[meta] => Array
(
[Closing Date] =>
[Technical Consultant] =>
[Client Name] =>
[Stage] => Waiting for Technical Assignment
[Contract Name] =>
[Signing Rate] =>
[Contract Number] =>
[Client Number] =>
[Closer Name] =>
[Completed On] => 2019-05-23
[Assigned Date] => 05/22/2019 12:28 pm
)
)
Expected output
Array
(
[36736] => Array
(
[meta] => Array
(
[Client Name] =>
[Client Number] =>
[Contract Name] => this is secod contract or abc
[Contract Number] =>
[Stage] => Waiting for Technical Assignment
[Closing Date] =>
[Technical Consultant] =>
[Signing Rate] =>
[Closer Name] =>
[Completed On] => 2019-05-23
[Assigned Date] => 05/22/2019 12:28 pm
)
)