簡體   English   中英

PHP對日期列排序多維數組

[英]php sort multidimensional array on date column

我通過以下方式設置了數組$ dataStoreForTableImport。

$dataStoreForTableImport['title']
$dataStoreForTableImport['content']
$dataStoreForTableImport['date']
$dataStoreForTableImport['link']
$dataStoreForTableImport['username']
$dataStoreForTableImport['website']

它包含以下數據

Array
(
[0] => Array
    (
        [title] => Quote from Tony Blair
        [content] => ... from beating it I'm afraid." (Tony Blair, Sky News) He had every opportunity to put religion in its ...
        [articledate] => 28/09/2013
        [link] => http://boards.fool.co.uk/message.asp?source=isesitlnk0000001&mid=12890951
        [Username] => Michael Dray
        [website] => The Motley Fool
    )

[1] => Array
    (
        [title] => Re: The Tony Blair Show
        [content] => ... I am irritated that he got such an easy ride; Why? Because he is not to your political liking? He was a witness; he was not on trial and he spoke under oath. What did you expect Jay to ask him? I had dealings with a QC a few years ago. He was as ...
        [articledate] => 28/05/2012
        [link] => http://boards.fool.co.uk/message.asp?source=isesitlnk0000001&mid=12564154
        [Username] => Michael Dray
        [website] => The Motley Fool
    )

[2] => Array
    (
        [title] => Re: The Tony Blair Show
        [content] => ... If your doubts about Jay's competence/bias were shared I'm sure it would have been debated ad nauseam on Radio 4. Eh - are you serious? I'm a Radio 4 fan - but thats despite its hatred of all things right of centre, not becuase of. ...
        [articledate] => 28/05/2012
        [link] => http://boards.fool.co.uk/message.asp?source=isesitlnk0000001&mid=12564167
        [Username] => Michael Dray
        [website] => The Motley Fool
    )

[3] => Array
    (
        [title] => Re: The Tony Blair Show
        [content] => ... Maybe Tony should have brought Cherie with him - remember Rupert Murdoch and the reaction of Wendi Deng to the custard pie incident. IMHO Cherie is every bit as intimidating:-) Wendi Deng did not eject the pie flinger, she intervened when he acted. Use of an angled bat to deflect criticism from ...
        [articledate] => 30/05/2012
        [link] => http://boards.fool.co.uk/message.asp?source=isesitlnk0000001&mid=12565346
        [Username] => Michael Dray
        [website] => The Motley Fool
    )

[4] => Array
    (
        [title] => Re: The Tony Blair Show
        [content] => ... What did surprise me was the fact that he had his own personal bodyguards in the hearing with him. Although, given the level of security that allowed that protester to break into the hearing, maybe he had a point! Eh? He is clearly at risk of terror ...
        [articledate] => 28/05/2012
        [link] => http://boards.fool.co.uk/message.asp?source=isesitlnk0000001&mid=12564500
        [Username] => Michael Dray
        [website] => The Motley Fool
    )

如果articleDate在給定日期之前,我希望能夠從此數組中刪除行。

我已經嘗試了一切,但似乎沒有用。 我什至無法按日期正確排序?

日期格式為-2007年2月10日

我用過

$sortDate = date('d/m/Y', strtotime($sortDate));

將其格式化為上面數組中顯示的格式。

誰能幫忙嗎?

謝謝

麥克風

對數據庫后端中的行進行過濾和排序。 這將改善您的應用程序的性能。 在SQL查詢中,使用WHERE子句按日期過濾,並使用ORDER BY子句按日期排序。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM