Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 18, 2015 15:08
Show Gist options
  • Save Fhernd/5802139 to your computer and use it in GitHub Desktop.
Save Fhernd/5802139 to your computer and use it in GitHub Desktop.
Ejemplo de tipeado débil.
<?php
$variable = 19; // tratada como entero
echo $variable + 13; // imprime 42
$variable = "Hola, "; // variable tratada como cadena de texto
echo "<br/>";
echo $variable; // imprime
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment