「PHP」gettype関数で変数の型を取得する
構文
gettype ( mixed $var ) : string
変数の型を取得する
phpコード
<?php $cft= array(array("A001", "B002", "C003"),444, 23.12, NULL, new stdClass, 'abcde'); foreach ($cft as $val) { echo gettype($val), "<br>\n"; } ?>
結果
array
integer
double
NULL
object
string