PHP - Esempio di operatore condizionale

Prova a seguire l'esempio per comprendere l'operatore condizionale. Copia e incolla il seguente programma PHP nel file test.php e tienilo nella root dei documenti del tuo server PHP e sfoglialo usando qualsiasi browser.

<html>
   
   <head>
      <title>Arithmetical Operators</title>
   </head>
   
   <body>
   
      <?php
         $a = 10;
         $b = 20;
         
         /* If condition is true then assign a to result otheriwse b */
         $result = ($a > $b ) ? $a :$b;
         
         echo "TEST1 : Value of result is $result<br/>";
         
         /* If condition is true then assign a to result otheriwse b */
         $result = ($a < $b ) ? $a :$b;
         
         echo "TEST2 : Value of result is $result<br/>";
      ?>
   
   </body>
</html>

Questo produrrà il seguente risultato:

TEST1 : Value of result is 20
TEST2 : Value of result is 10