Mega Code Archive

 
Categories / Php / Data Type
 

Assign an integer value this way

<?php  $myint = 10;  echo $myint . "<br />";  echo (int) $myint . "<br />";  $myint = 10 / 3;  echo (int) $myint . "<br />"; ?>