PHP 条件运算符 PHP 数组函数 array_uintersect_assoc() PHP 数组函数 array_unique() 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> PHP 数组函数 array_uintersect_assoc() PHP 数组函数 array_unique()