Answers for "how to check the type of var in php"

PHP
0

get type of variable php

$var = 1200;
gettype($var); // this will return integer
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language