is_numericの読み方
phpで利用される関数の1つである「is_numeric」の読み方を掲載してます。
読み⽅
「イズ・ニューメリック」と読みます。
英訳
「numeric」は「数の」という意味があります。
is_numericとは
phpでは、数値か、数値の文字列であるかを判定する関数となります。
<?php
$tests = array(
"7",
7,
0x539,
02471,
0b10100111001,
1337e0,
"0x539",
"02471",
"0b10100111001",
"1337e0",
"not numeric",
array(),
1.1,
null
);
foreach ($tests as $element) {
if (is_numeric($element)) {
echo var_export($element, true) . " はtrueです" . "<br>";
} else {
echo var_export($element, true) . " はfalseです" . "<br>";
}
}
実行結果
-
前の記事
activeElementの読み方 2020.09.07
-
次の記事
webcamの読み方 2020.09.07