Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,782 answers

573 users

How to use nested sort if in PHP

1 Answer

0 votes
$score = 30;
$age = 15;
echo 'Result 1: ' . ($score > 20 ? ($age > 13 ? '> 20 > 13' : '> 20 < 13') : ($age > 10 ? '< 20 > 10' : '< 20 < 10')) . "\n";

$score = 30;
$age = 4;
echo 'Result 2: ' . ($score > 20 ? ($age > 13 ? '> 20 > 13' : '> 20 < 13') : ($age > 10 ? '< 20 > 10' : '< 20 < 10')) . "\n";

$score = 10;
$age = 17;
echo 'Result 3: ' . ($score > 20 ? ($age > 13 ? '> 20 > 13' : '> 20 < 13') : ($age > 10 ? '< 20 > 10' : '< 20 < 10')) . "\n";

$score = 10;
$age = 5;
echo 'Result 4: ' . ($score > 20 ? ($age > 13 ? '> 20 > 13' : '> 20 < 13') : ($age > 10 ? '< 20 > 10' : '< 20 < 10')) . "\n";



/*
run:

Result 1: > 20 > 13
Result 2: > 20 < 13
Result 3: < 20 > 10
Result 4: < 20 < 10

*/

 





answered Dec 12, 2021 by avibootz

Related questions

1 answer 96 views
96 views asked Oct 13, 2016 by avibootz
2 answers 64 views
1 answer 44 views
1 answer 38 views
38 views asked Jul 1, 2022 by avibootz
1 answer 97 views
...