php如何將float轉int?
1、使用函數「intval」將float類型資料轉換為int型別;
$float = 15.222; intval($float);
2、使用「settype()」將float型別資料設為int型別;
$float = 15.222; settype($float, 'int');
3、在變數前面加上“ (int)”,將其強制轉換為int。
$float = 15.222; (int) $float;
推薦教學:《PHP》
以上是php如何將float轉int?的詳細內容。更多資訊請關注PHP中文網其他相關文章!