Skip to content

Instantly share code, notes, and snippets.

@maykonmeier
Last active August 29, 2015 14:04
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 maykonmeier/71ee012fe944c5bd5307 to your computer and use it in GitHub Desktop.
Save maykonmeier/71ee012fe944c5bd5307 to your computer and use it in GitHub Desktop.
Variables - Basic types
<?php
// Boolean
$foo = true;
echo $foo;
// Integer
$width = 1024;
$height = 768;
// Float
$amount = 10.5;
// String
$firstName = 'Maykon';
$lastName = "Meier"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment