php中string如何轉int

2020-07-16 10:06:30

php中string如何轉int?

PHP中將字串轉化為整數(int) intval() printf()

int

<?php 
    $foo = "1"; // $foo 是字串型別 
    $bar = (int)$foo; // $bar 是整型
?>

intval

<?php 
    $foo = "1"; // $foo 是字串型別 
    $bar = intval($foo); // $bar 是整型
?>

sprintf

<?php 
     $foo = "1"; // $foo 是字串型別 
     $bar = sprintf("%d", $foo); // $bar 是字串型別 
?>
以上就是php中string如何轉int的詳細內容,更多請關注TW511.COM其它相關文章!