Answers for "how to find out the type of variable in php"

PHP
1

how to find datatype of a variable in php

<?php
$a = 3;
echo gettype($a);
?>
Posted by: Guest on February-23-2022
15

find type in php

gettype($u)
Posted by: Guest on May-08-2020

Code answers related to "how to find out the type of variable in php"

Browse Popular Code Answers by Language