Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 "if / else"의 약어로 삼항 연산자( ? :)를 어떻게 사용합니까?

<시간/>

구문은 다음과 같습니다 -

$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