Skip to content

Instantly share code, notes, and snippets.

@zerobugs-oficial
Created June 18, 2020 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerobugs-oficial/cdda60fd9712b9f148900ea048d78728 to your computer and use it in GitHub Desktop.
Save zerobugs-oficial/cdda60fd9712b9f148900ea048d78728 to your computer and use it in GitHub Desktop.
Calculando o módulo de um número com a função abs()
<?php
echo abs(6.7); // retorna 6.7
echo abs(-6.7); // retorna 6.7
echo abs(-3); // retorna 3
echo abs(3); // retorna 3
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment