<?php $x = 432; var_dump(is_int($x)); $x = 23.77; var_dump(is_int($x)); ?>
// ? means $count can be NULL or integer, maybe PHP >=7.4 private ?int $count
$age = 19; //integer is assigned to variable age echo $age //will output 19