intvalの読み方

intvalの読み方

phpで利用されるメソッドの1つである「intval」の読み方を掲載してます。

読み⽅

イントバル」と読みます。

intvalとは

phpで、int型に変換するメソッドとなります。

<?php

$str = "11.11";

$result = intval($str);

var_dump($result);

実行結果

int(11)