Skip to content

Instantly share code, notes, and snippets.

@jimmyachour
Created March 10, 2019 12:07
Show Gist options
  • Save jimmyachour/d41df77e314f5524d2200f1fb59baa9f to your computer and use it in GitHub Desktop.
Save jimmyachour/d41df77e314f5524d2200f1fb59baa9f to your computer and use it in GitHub Desktop.
variables declaration and display
<?php
$title = "Indiana Jones et la derniere croisade";
$haveSeen = true;
$released = 1989;
$rate = 8.2;
var_dump($title, $haveSeen, $released, $rate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment