"PHP 비교 연산자 목록"의 두 판 사이의 차이

36번째 줄: 36번째 줄:
* http://php.net/manual/en/language.operators.comparison.php
* http://php.net/manual/en/language.operators.comparison.php


[[분류: PHP]]
[[분류: PHP 연산자]]
[[분류: 비교 연산자]]
[[분류: 비교 연산자]]

2019년 5월 18일 (토) 01:33 판

1 개요

PHP Comparison Operators
PHP 비교 연산자
연산자 의미 예시
== 같음 $x == $y
=== 동일함 $x === $y
!= 같지 않음 $x != $y
!== 동일하지 않음 $x != $y
<> 같지 않음 $x <> $y
< 작음 $x < $y
> $x > $y
<= 작거나 같음 $x < $y
>= 크거나 같음 $x > $y
<=>
??

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}