“ternärer Operator in PHP” Code-Antworten

PHP ternär

$result = $condition ? 'foo' : 'bar';
Distinct Dolphin

ternärer Operator für drei Bedingungen in PHP

$foo = your_value;
$bar = ($foo == 1) ? "1" : (($foo == 2)  ? "2" : "other");
echo $bar;
Ankur

Ternär in PHP

print ($marks>=40) ? "pass" : "Fail";
Exuberant Eland

ternärer Operator in PHP

<?php
  $x=4;
  $y=3;
  if(x>y)?echo"X is large": echo "y is large";

 ?>
Handsome Hornet

PHP Ternary String

$if = function($test, $true, $false)
{
  return $test ? $true : $false;
};

echo "class='{$if(true, 'abc', 'def')}'";
Borma

Turnierausdruck PHP

(condition) ? /* value to return if condition is true */ 
            : /* value to return if condition is false */ ;
echo empty($address['street2']) ? "Street2 is empty!" : $address['street2'];
Filthy Fly

Ähnliche Antworten wie “ternärer Operator in PHP”

Fragen ähnlich wie “ternärer Operator in PHP”

Weitere verwandte Antworten zu “ternärer Operator in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen