-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
72 lines (51 loc) · 1.13 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
require_once ('vendor/autoload.php');
require_once('./includes/helpers.php');
/*
* Simple Variable
*/
$games = 5;
/**
* Constants / Globals
*/
define('WALLET', $games * 55);
/**
* Maths examples
*/
$games++;
$games--;
$offer_price = 19.342498234823894;
//echo( round($offer_price, 4) );
/**
* Echo-ing back to the browser
*/
//echo( WALLET );
/**
* Built in methods
*/
$title = 'Rocket League ';
$slug = strtolower( str_replace(' ', '_', trim($title) ) );
//echo( $slug );
/**
* Dates!
*/
$today = date('D d M Y H:i:s');
//echo( $today );
/** Arrays and functions */
$library = [];
function buyAnotherGame( String $title, Float $price){
global $library;
$library[] = [
'title' => $title,
'price' => number_format($price,2),
'youtube_link' => 'https://www.youtube.com/results?search_query=' . trimAndSwap($title, ' ', '+'),
];
return $library;
}
buyAnotherGame('Dying Light', 12.99);
buyAnotherGame('Gran Turismo Sport', 30.00);
buyAnotherGame('Fortnight', 0);
$bike = new QuadBike();
var_dump($bike->getNumberOfWheels());
die;
require_once('./partials/games_library.php');