Skip to content

Instantly share code, notes, and snippets.

@MkLHX
Created October 9, 2018 19:04
Show Gist options
  • Save MkLHX/4f262458caf8bf6c9ed8d61b7f663b29 to your computer and use it in GitHub Desktop.
Save MkLHX/4f262458caf8bf6c9ed8d61b7f663b29 to your computer and use it in GitHub Desktop.
<?php
$title = "Indiana Jones and the Last Crusade";
$date = new \DateTime('1989-05-24');
$rank = 8.3;
$baseRank = 10;
$styles=['Action','Adventure','Fantasy'];
$rated = true,
echo $title;
echo $date->format('d-F-Y');
echo $rank."/".$baseRank;
echo "rated : $rated";
foreach($style as $style){
echo $style."/<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment