Php if 문

코드 예제

13
0

php if elseif

$a = random_int(0, 10);
$b = random_int(0, 10);
if ($a > $b) {
  echo 'a is greater than b';
} elseif ($a == $b) {
  echo 'a is equal to b';
} else {
  echo 'a is less than b';
}
13
0

php 경우 elseif

$a = random_int(0, 10);
$b = random_int(0, 10);
if ($a > $b) {
  echo 'a is greater than b';
} elseif ($a == $b) {
  echo 'a is equal to b';
} else {
  echo 'a is less than b';
}
11
0

php 경우


<?php
if ($a > $b) {
  echo "a is bigger than b";
  $b = $a;
}
?>

10
0

php 경우


<?php
if ($a > $b) {
  echo "a is bigger than b";
  $b = $a;
}
?>

9
0

php elseif

<?php
if ($a > $b) {
    echo "a is bigger than b";
} elseif ($a == $b) {
    echo "a is equal to b";
} else {
    echo "a is smaller than b";
}
?>
6
0

php 다른 경우


<?php
if ($a > $b) {
    echo "a is bigger than b";
} elseif ($a == $b) {
    echo "a is equal to b";
} else {
    echo "a is smaller than b";
}
?>

3
0

php 조건문

#Conditionals

<?php
    #Conditionals
    /*
    == equals
    === identical
    < less than
    > greater than
    <= less than or equal to
    >= greate than or equal to
    != not equal to
    !== not identrical
    */
    $num = 5;

    #if($num == 5){
     #   echo '5 passed';
    #}elseif($num == 6){
   #     echo '6 passed';
  #  }else{
 #       echo'did not pass';
#    }

    #nesting If Statements
    
    if($num>4){
        if($num < 10){
            echo "$num passed<br>";
        }
    }
    /*
    Logical operators can be used 
    instead of what is above

    and     &&
    or      ||
    xor          means one has to be true but not both
    */
    if($num >4 && $num <10){
        echo "$num passed using Logical operators";
    }
    /*
    Switch tests for value and then find
    a match and do something
    */
    $favColor = 'pink';

    switch($favColor){
    case 'red':
        echo '<br>Your favorite color is red';
        break;
    case 'green':
        echo '<br>OH NO!! Your favorite color is green';
        break;
    case 'blue':
        echo '<br>Kool!! Your favorite color is blue';
        break;
    default:
        echo '<br>Yikes! Your favorite color is something else';
        
    }

?>
1
0

php 보다 적은 경우 번호

<?php
if ($a > $b)
  echo "a is bigger than b";
?>

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................