gilsonfilho

Untitled

Jun 23rd, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2. //********** ESCALARES **********/
  3. // string
  4. $nome = "Olá mundo";
  5. var_dump($nome);
  6. if(is_string($nome)):
  7.    echo "é uma string";
  8. else:
  9.     echo "Não é uma string";
  10. endif;
  11. echo "<hr>";
  12.  
  13. // int
  14. $idade = 21;
  15. var_dump($idade);
  16. if (is_int($idade)):
  17.     echo "é um inteiro";
  18. else:
  19.     echo "Não é um inteiro";
  20. endif;
Advertisement
Add Comment
Please, Sign In to add comment