구문은 다음과 같습니다 -
$anyVariableName=yourCondition ? if condition becomes true then this will be executed: if condition becomes false then this gets executed;
예시
PHP 코드는 다음과 같습니다
<!DOCTYPE html> <html> <body> <?php $value=100; $result=$value >=100 ? "Greater Than or Equal to 100":"Less Than 100"; echo $result; ?> </body> </html>
출력
그러면 다음과 같은 출력이 생성됩니다.
Greater Than or Equal to 100