Advertisement
ph4x35ccb

tipos de dados e comparaçoes

Feb 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. //declaracão das variaveis
  3. $v_string = "TreinaWeb Cursos";
  4. $v_boolean = TRUE;
  5. $v_integer = 100;
  6. $v_float =100.9;
  7.  
  8. //impresao dos tipos
  9. echo gettype($v_float);
  10.  
  11. var_dump($v_float);
  12.  
  13. var_dump($v_boolean);
  14. //verificasao dos tipos
  15.  
  16. if(is_int($v_integer) ){
  17.     echo '$v_string nao e um booleano.';
  18. }
  19. //grupo estudos https://www.facebook.com/groups/353340335260087/
  20. //irc.vircio.org #sampa
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement