9 Execution and Conditional Operator in PHP Atharva Satyendra Agrawal January 16, 2020 Atharva Satyendra Agrawal Program: <?php #Exceution Operator $output = `ls -l`; echo $output; #Displays long list of files from present directory #Conditional Operator $a = 10; $b = 20; $max = $a > $b ? $a : $b; echo "Max Number: $max"; ?> Output: Tweet Share Share Share Related Post