php如何將字串數字轉換成整數?
使用PHP的內建函數intval
進行變數的轉換運算。
<?php $foo = "1"; // $foo 是字符串类型 $bar = intval($foo); // $bar 是整型 ?>
intval函數的格式為:int intval(mixed $var [, int $base]);
相關參考:<a href="//m.sbmmt.com" target="_blank" style="color: rgb(0, 176, 240); text-decoration: underline;"><span style="color: rgb(0, 176, 240);">php中文網</span></a>
以上是php如何將字串數字轉成整數的詳細內容。更多資訊請關注PHP中文網其他相關文章!