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
- PHP Storm
- 팝업 바깥 레이어
- Location Permission
- Android Studio
- AWS
- Android Flavor
- Github Token
- Execution failed for task ':test'.
- mac 패키지 관리자
- git
- TextView 일부분
- docker에서 mysql 실행
- 5회 인증
- Chat GPT
- Github 등록
- git cannot identify version of git executable
- codeigniter
- XML Opacity
- 여러 개
- sourceSet
- junit
- InvalidTestClassError
- Linux 패키지 관리자
- MySQL
- nextFocusDown
- php
- 챗지피티
- 다음으로 이동
- 안드로이드 자동으로 포커싱
- 챗GPT
Archives
- Today
- Total
128june
PHP 함수 예제 [ isset / in_array / is_array] 본문
반응형
- isset은 변수가 설정되었으면 참을 반환
<?php
$dog = 'dog';
if(isset($dog)){
echo '개는 동물입니다';
}
결과
개는 동물입니다
- in_array는 needle인자를 주어진 haystack 배열에 있는지 검색
여기서 [needle : 검색값 / haystack : 배열] 을 뜻한다
<?php
$animal = array("dog", "cat", "cow", "horse");
$june_Want = 'cat';
$shin_Want = 'icecream';
if(in_array($june_Want, $animal)){
echo "june이 원하는것은 $june_Want 입니다.<br>";
echo "이것은 동물입니다.<br>";
}else {
echo "동물이 아닌 $june_Want 입니다.<br>";
}
echo "<br>";
if(in_array($shin_Want, $animal)){
echo "shin이 원하는 것은 $shin_Want 입니다.<br>";
echo "이것은 동물입니다.<br>";
}else {
echo "동물이 아닌 $shin_Want 입니다.<br>";
}
결과
june이 원하는것은 cat 입니다.
이것은 동물입니다.
동물이 아닌 icecream 입니다.
- is_array는 배열인 경우 참(1)을 return합니다.
<?php
$animal = array("dog", "cat", "cow", "horse");
$june_Want = 'cat';
if(is_array($animal)){
echo 'animal은 배열이 맞습니다<br>';
}else{
echo 'animal은 배열이 아닙니다<br>';
}
if(is_array($june_Want)){
echo 'june이 원하는 것은 배열이 맞습니다<br>';
}else{
echo 'june이 원하는 것은 배열이 아닙니다<br>';
}
결과
animal은 배열이 맞습니다
june이 원하는 것은 배열이 아닙니다
반응형
'JetBrain > PHP' 카테고리의 다른 글
[PHP] intval 함수 (0) | 2021.03.19 |
---|---|
[PHP] $_SERVER 함수 종류 (0) | 2020.06.22 |
PHP 7.4.6 설치 [윈도우10 64bit] (2) | 2020.06.15 |
PHP echo와 print Statements (0) | 2020.06.03 |
PHP 변수의 종류 (0) | 2020.06.03 |
Comments