वाक्य रचना इस प्रकार है -
$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