PHP PHP基本

[PHP] 変数の型名を取得する(gettype)

2015年9月15日

変数の型名を取得するには、gettype関数を使用します。

サンプルソース

例)変数の型名を取得するサンプルいろいろ


<?php
 $a = "ABC";
 echo gettype($a);
 → "string"

 $b = 123;
 echo gettype($b);
 → "integer"

 $c = array(1,2,3);
 echo gettype($c);
 → "array"

返る値は以下のいずれかです。

【gettypeが返す値】
型名
string 文字列型
integer 整数型
double 小数型
boolean 真偽型
array 配列型
object オブジェクト型
resource リソース型
NULL Null
unknown type 型不明

備考

-PHP, PHP基本
-