Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Created June 12, 2019 15:29
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 flaviors200/4082a6466e295f17405a2eac02cf460d to your computer and use it in GitHub Desktop.
Save flaviors200/4082a6466e295f17405a2eac02cf460d to your computer and use it in GitHub Desktop.
Casting esplicito in PHP
<?php
$var1 = 10;
$var2 = 6.5;
var_dump($var1 + $var2); // Output: float(16.5)
$var2 = (int) 6.5;
var_dump($var1 + $var2); // Output: int(16)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment