Skip to content

Instantly share code, notes, and snippets.

@Thirdwrist
Last active January 5, 2019 01:28
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 Thirdwrist/370cc1dbf471878401a2d18b9902fe32 to your computer and use it in GitHub Desktop.
Save Thirdwrist/370cc1dbf471878401a2d18b9902fe32 to your computer and use it in GitHub Desktop.
/*
This works fine in PHP
*/
$value = "bob";
$value = 2;
$value = true;
/*
This will throw an error as the variable has
already been defined explicitly as an integer
*/
Int $value = 3;
$value = "bob"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment