1. gettype()
<?php
$a = 123;
$b = "abc";
$c = 0.123;
echo "$a \t", gettype($a), "\n";
echo "$b \t", gettype($b), "\n";
echo "$c \t", gettype($c), "\n";
?>
2. settype()
<?php
$a = 123;
$b = 0.123;
echo "$a \t", gettype($a), "\n";
settype($a, "double");
echo "$a \t", gettype($a), "\n";
echo "$b \t", gettype($b), "\n";
settype($b, "string");
echo "$b \t", gettype($b), "\n";
?>
'Programming Language > PHP' 카테고리의 다른 글
[php] 변수의 절대값과 반올림 하는 방법 abs(), round() (0) | 2021.10.22 |
---|---|
[php] 최대값과 최솟값을 구하는 방법 max(), min() (0) | 2021.10.22 |
[php] 배열의 길이를 구하는 방법, count() (0) | 2021.10.15 |
[php] 두 배열을 더해 하나의 합집합 배열을 만드는 방법, array_merge(), array_unique(array_merge()) (0) | 2021.10.15 |
[php] 배열을 무작위로 랜덤하게 섞기, shuffle() (0) | 2021.10.15 |