Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Sort Array without PHP Function
WhatsApp
Bhushan Singh
Feb 24
2016
1.2
k
0
0
function cmp($a1, $b1)
{
if
($a1 == $b1)
{
return
0;
}
return
($a1 < $b1) ? -1 : 1;
}
$a = array(
'10.00'
,
'5.00'
,
'6.00'
);
usort($a,
"cmp"
);
print_r($a);
sort array php
Up Next
Sort Array without PHP Function