PHP - 条件运算符示例


尝试以下示例来理解条件运算符。将以下 PHP 程序复制并粘贴到 test.php 文件中,并将其保存在 PHP 服务器的文档根目录中,然后使用任何浏览器浏览它。

<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>

这将产生以下结果 -

TEST1 : Value of result is 20
TEST2 : Value of result is 10
php_operator_types.htm