I were using the "rsort" function to sort through the timestamps when the array only contained a timestamp and were not multidimensional.
So now the question is how do i approach this?
The array looks something similair to this
Array
(
    [0] => Array
        (
            [type] => post
            [id] => 1
            [timestamp] => 2017-08-12 21:03:22
            [poster] => 1
            [profile] => 1
            [post] => Testtttttinngggs
        )
    [1] => Array
        (
            [type] => post
            [id] => 2
            [timestamp] => 2017-08-12 21:03:18
            [poster] => 1
            [profile] => 5
            [post] => Hello you
        )
    [2] => Array
        (
            [type] => post
            [id] => 3
            [timestamp] => 2017-08-12 21:03:33
            [poster] => 1
            [profile] => 1
            [post] => Somesay timestamp is screwed
        )
    [3] => Array
        (
            [type] => post
            [id] => 4
            [timestamp] => 2017-08-12 21:28:54
            [poster] => 1
            [profile] => 1
            [post] => This is truely a teeest
        )
    [4] => Array
        (
            [type] => post
            [id] => 5
            [timestamp] => 2017-08-13 15:04:34
            [poster] => 1
            [profile] => 1
            [post] => Test test test test
        )
)
 
     
     
    