Answers for "check data type in php 7"

PHP
1

how to find datatype of a variable in php

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

check type in php

gettype ( mixed $var ) : string
Posted by: Guest on February-22-2020

Browse Popular Code Answers by Language