Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Testing the Type of a Variable

Mon Oct 27, 2008 6:13 pm

Code:

<html>
<head>
<title>Testing the type of a variable</title>
</head>
<body>
<?php
$testing
= 5;
print
gettype( $testing ); // integer
print "<br>";

$testing = "five";
print
gettype( $testing ); // string
print("<br>");

$testing = 5.0;
print
gettype( $testing ); // double
print("<br>");

$testing = true;
print
gettype( $testing ); // boolean
print "<br>";
?>
</body>
</html>




Post a reply
  Related Posts  to : Testing the Type of a Variable
 Changing the Type of a Variable with settype()     -  
 different between Local variable and Global variable     -  
 software unit testing     -  
 JUnit Testing of GUIs in Swing     -  
 Unset variable     -  
 PHP variable in javascript     -  
 Variable interpolation     -  
 transient variable     -  
 Variable Size Arrays     -  
 Passing a Reference Variable     -  

Topic Tags

PHP Variables