-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdegreesHandler.php
More file actions
33 lines (32 loc) · 876 Bytes
/
Copy pathdegreesHandler.php
File metadata and controls
33 lines (32 loc) · 876 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Deegrees Celsius</title>
<!-- <link rel="stylesheet" href="assets/reset.css">-->
<!-- <link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">-->
</head>
<body>
<!--<script src="assets/jquery-3.2.1.js"></script>-->
<!--<script src="assets/js/bootstrap.min.js"></script>-->
<?php
/**
* Created by PhpStorm.
* User: dobrodeev
* Date: 06.12.2018
* Time: 9:41
*/
spl_autoload_register(function ($class)
{
include $class.'.php';
}
);
$degreesCel = new RecursivClass();
//$degreesCel->degreesExchange();
$degreesCel->degreesExchangeParametrs(13,19,2);
?>
</body>
</html>