forked from assembler-institute/php-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
44 lines (40 loc) · 717 Bytes
/
Copy pathfunctions.php
File metadata and controls
44 lines (40 loc) · 717 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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
function add($param1, $param2) {
return $param1 + $param2;
}
print_r(add(3, 5));
?>
<br>
<?php
function mult($param1, $param2) {
return $param1 * $param2;
}
print_r(mult(3, 5));
?>
<br>
<?php
function div($param1, $param2) {
return $param1 / $param2;
}
print_r(div(20, 5));
?>
<br>
<?php
function all($param1, $param2) {
return $param1 + $param2;
return $param1 * $param2;
return $param1 / $param2;
}
print_r(all(20, 5));
?>
</body>
</html>