Array filter by timestamp
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm trying to filter an array by the timestamp, but it didn't work. Here is my code:
$get = array{
"5656778": {
"date": 1541304426,
"text": "some text",
},
"567845": {
"date": 1541304416,
"text": "some other text",
},
}
function cmp($b, $a){
$ad = strnatcmp($a['date']);
$bd = strnatcmp($b['date']);
return ($bd-$ad);
}
usort($get, 'cmp');
foreach ($get as $key => $value) {
// displaying results
}
I tried to fix the approach but it all shows the same results.
What am I missing?
Your help is highly appreciated
php arrays sorting
|
show 3 more comments
I'm trying to filter an array by the timestamp, but it didn't work. Here is my code:
$get = array{
"5656778": {
"date": 1541304426,
"text": "some text",
},
"567845": {
"date": 1541304416,
"text": "some other text",
},
}
function cmp($b, $a){
$ad = strnatcmp($a['date']);
$bd = strnatcmp($b['date']);
return ($bd-$ad);
}
usort($get, 'cmp');
foreach ($get as $key => $value) {
// displaying results
}
I tried to fix the approach but it all shows the same results.
What am I missing?
Your help is highly appreciated
php arrays sorting
4
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
5
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26
|
show 3 more comments
I'm trying to filter an array by the timestamp, but it didn't work. Here is my code:
$get = array{
"5656778": {
"date": 1541304426,
"text": "some text",
},
"567845": {
"date": 1541304416,
"text": "some other text",
},
}
function cmp($b, $a){
$ad = strnatcmp($a['date']);
$bd = strnatcmp($b['date']);
return ($bd-$ad);
}
usort($get, 'cmp');
foreach ($get as $key => $value) {
// displaying results
}
I tried to fix the approach but it all shows the same results.
What am I missing?
Your help is highly appreciated
php arrays sorting
I'm trying to filter an array by the timestamp, but it didn't work. Here is my code:
$get = array{
"5656778": {
"date": 1541304426,
"text": "some text",
},
"567845": {
"date": 1541304416,
"text": "some other text",
},
}
function cmp($b, $a){
$ad = strnatcmp($a['date']);
$bd = strnatcmp($b['date']);
return ($bd-$ad);
}
usort($get, 'cmp');
foreach ($get as $key => $value) {
// displaying results
}
I tried to fix the approach but it all shows the same results.
What am I missing?
Your help is highly appreciated
php arrays sorting
php arrays sorting
edited Nov 23 '18 at 11:23
Federico klez Culloca
16.1k134380
16.1k134380
asked Nov 23 '18 at 11:20
GadGad
459
459
4
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
5
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26
|
show 3 more comments
4
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
5
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26
4
4
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
5
5
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26
|
show 3 more comments
1 Answer
1
active
oldest
votes
I'm presuming that what you've put in the question is actually a somewhat stripped down piece of your complete JSON
data that you are converting to an array. In that case, this code should give you the desired result:
$json = '{
"5656778": {
"date": 1541304426,
"text": "some text"
},
"567845": {
"date": 1541304416,
"text": "some other text"
}
}';
$get = json_decode($json, true);
usort($get, function ($a, $b) { return $a['date'] - $b['date']; });
print_r($get);
Output:
Array
(
[0] => Array
(
[date] => 1541304416
[text] => some other text
)
[1] => Array
(
[date] => 1541304426
[text] => some text
)
)
Demo on 3v4l.org
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53445747%2farray-filter-by-timestamp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm presuming that what you've put in the question is actually a somewhat stripped down piece of your complete JSON
data that you are converting to an array. In that case, this code should give you the desired result:
$json = '{
"5656778": {
"date": 1541304426,
"text": "some text"
},
"567845": {
"date": 1541304416,
"text": "some other text"
}
}';
$get = json_decode($json, true);
usort($get, function ($a, $b) { return $a['date'] - $b['date']; });
print_r($get);
Output:
Array
(
[0] => Array
(
[date] => 1541304416
[text] => some other text
)
[1] => Array
(
[date] => 1541304426
[text] => some text
)
)
Demo on 3v4l.org
add a comment |
I'm presuming that what you've put in the question is actually a somewhat stripped down piece of your complete JSON
data that you are converting to an array. In that case, this code should give you the desired result:
$json = '{
"5656778": {
"date": 1541304426,
"text": "some text"
},
"567845": {
"date": 1541304416,
"text": "some other text"
}
}';
$get = json_decode($json, true);
usort($get, function ($a, $b) { return $a['date'] - $b['date']; });
print_r($get);
Output:
Array
(
[0] => Array
(
[date] => 1541304416
[text] => some other text
)
[1] => Array
(
[date] => 1541304426
[text] => some text
)
)
Demo on 3v4l.org
add a comment |
I'm presuming that what you've put in the question is actually a somewhat stripped down piece of your complete JSON
data that you are converting to an array. In that case, this code should give you the desired result:
$json = '{
"5656778": {
"date": 1541304426,
"text": "some text"
},
"567845": {
"date": 1541304416,
"text": "some other text"
}
}';
$get = json_decode($json, true);
usort($get, function ($a, $b) { return $a['date'] - $b['date']; });
print_r($get);
Output:
Array
(
[0] => Array
(
[date] => 1541304416
[text] => some other text
)
[1] => Array
(
[date] => 1541304426
[text] => some text
)
)
Demo on 3v4l.org
I'm presuming that what you've put in the question is actually a somewhat stripped down piece of your complete JSON
data that you are converting to an array. In that case, this code should give you the desired result:
$json = '{
"5656778": {
"date": 1541304426,
"text": "some text"
},
"567845": {
"date": 1541304416,
"text": "some other text"
}
}';
$get = json_decode($json, true);
usort($get, function ($a, $b) { return $a['date'] - $b['date']; });
print_r($get);
Output:
Array
(
[0] => Array
(
[date] => 1541304416
[text] => some other text
)
[1] => Array
(
[date] => 1541304426
[text] => some text
)
)
Demo on 3v4l.org
edited Nov 23 '18 at 11:37
answered Nov 23 '18 at 11:30
NickNick
38.4k132443
38.4k132443
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53445747%2farray-filter-by-timestamp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
That is not an array. That is json...
– Andreas
Nov 23 '18 at 11:23
5
@Andreas that is nothing in php, actually.
– Federico klez Culloca
Nov 23 '18 at 11:24
Yeah I just noticed to. At first glance it looked like json. but then i noticed
– Andreas
Nov 23 '18 at 11:24
Could you help fixing it?
– Gad
Nov 23 '18 at 11:26
Besides, "it didn't work" is not really a problem statement. You should specify what kind of error you're getting.
– Federico klez Culloca
Nov 23 '18 at 11:26