Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- C
- 따라하면서 배우는 C언어
- web
- 정수론
- 종만북
- 백준
- server
- Cleancode
- Math
- Algospot
- graph
- Algorithm
- 생활코딩
- Python
- udemy
- JavaScript
- BASIC
- 따배씨
- php
- 인프런
- 따라하며 배우는 C언어
- dfs
- BFS
- BOJ
- C언어
- DP
- greedy
- sorting
- programmers
- String
Archives
- Today
- Total
몽상실현개발주의
[생활코딩] 6.3 조건문 - 논리 연산자 ~ 6.4 boolean 과 형변환 본문
생활코딩 php 강좌
6. 조건문
6.3 조건문 - 논리 연산자
6.3.1 and 연산자
<?php
if (true and true){
echo 1;
}
if (true and false){
echo 12
}
if (false and true){
echo 3;
}
if (false and false){
echo 4;
}
?>
// 1
- A and B : A 와 B 모두 true 면 true
<html>
<body>
<form method="POST" action="16.php">
id : <input type="text" name="id">
password : <input type="text" name="password">
<input type="submit">
</form>
</body>
</html>
// 16.php
<?php
if ($_POST['id'] === 'egoing' && $_POST['password'] === '11111'){
echo 'right';
}else{
echo 'wrong';
}
?>
- and 와 && 는 같은 의미
6.3.2 or 연산자
<?php
if (true or true){
echo 1;
}
if (true or false){
echo 2;
}
if (false or true){
echo 3;
}
if (false or false){
echo 4;
}
?>
// 123
- A or B : A 와 B 중 하나라도 true 면 true
<html>
<body>
<form method="POST" action="19.php">
id : <input type="text" name="id">
password : <input type="text" name="password">
<input type="submit">
</form>
</body>
</html>
// 19.php
<?php
if ($_POST['id'] === 'egoing' or $_POST['id'] === 'kkkk' or $_POST['id'] === 'sorialgi'){
echo 'right';
}else{
echo 'wrong';
}
?>
6.3.3 and , or 연산자의 복합 사용
<html>
<body>
<form method="POST" action="21.php">
id : <input type="text" name="id">
password : <input type="text" name="password">
<input type="submit">
</form>
</body>
</html>
// 21.php
<?php
if(
($_POST['id'] === 'egoing' or $_POST['id'] === 'kkkk' or $_POST['id'] === 'sorialgi')
and
$_POST['passworld'] === '11111'
){
echo 'right';
}else{
echo 'wrong';
}
?>
6.3.4 " ! " (not) 연산자
<?php
if (!true and !true){
echo 1;
}
if (!true and !false){
echo 2;
}
if (!false and !true){
echo 3;
}
if (!false and !false){
echo 4;
}
?>
// 4
- '!' 는 not 연산, 참 -> 거짓 / 거짓 -> 참
6.4 boolean 과 형변환
- 형변환 : php 는 상황에 따라 자동으로 data type 을 변환해 주는 특성이 있음
- php type comparison table Link
<?php
if (1 and 1){
echo 1;
}
if (1 and 0){
echo 2;
}
if (0 and 1){
echo 3;
}
if (0 and 0){
echo 4;
}
?>
// 1
- 1 == true, 0 == false
- if 조건의 0 이나 1을 boolean 인 false 와 true 로 형변환을 함
이 글의 모든 사진과 내용의 출처는 생활코딩에 있음을 알려드립니다.
'Language > php' 카테고리의 다른 글
[생활코딩] 8.1 php 함수의 기본 문법 ~ 8.3 함수 인자의 기본값 (0) | 2021.05.11 |
---|---|
[생활코딩] 7.1 php 반복문의 기본 문법 ~ 7.4 반복문의 중첩 (0) | 2021.05.11 |
[생활코딩] 6.1 조건문 문법 ~ 6.2 조건문의 응용 (0) | 2021.05.10 |
[생활코딩] 5.1 입력과 출력 ~ 5.3 GET 방식 vs POST 방식 (0) | 2021.05.10 |
[생활코딩] 4.4 비교 (0) | 2021.05.09 |
Comments