Data Type Php

  $myint = 10;
  echo $myint . "";
  echo (int) $myint . "";
  $myint = 10 / 3;
  echo (int) $myint . ""; 
  
  $thenumber = 9.99 * 1.07;
  echo "$" . $thenumber . ""; 
  echo "$" . sprintf ("%.2f", $thenumber);
?>