Answers for "(int) in php"

PHP
14

cast string to int php

$num = "3.14"; 
$int = (int)$num;//string to int
$float = (float)$num;//string to float
Posted by: Guest on March-23-2020
8

php to int

$num = "3.14";
$int = (int)$num;
Posted by: Guest on April-13-2020
1

PHP Numbers

<?php
$x = 5985;
var_dump(is_int($x));

$x = 59.85;
var_dump(is_int($x));
?>
Posted by: Guest on November-27-2020
0

php "?int"

// ? means $count can be NULL or integer, maybe PHP >=7.4
private ?int $count
Posted by: Guest on January-01-2021

Browse Popular Code Answers by Language