-
Notifications
You must be signed in to change notification settings - Fork 525
/
01_output.php
52 lines (41 loc) · 1.43 KB
/
01_output.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
<?php // This is a php tag. If there is no html or other content below the php, we don't need to close the php tag.
/* ------- Outputting Content ------- */
// Echo - Output strings, numbers, html, etc
echo 'Hello';
echo 123;
echo '<h1>Hello</h1>';
// print - Similar to echo, but a bit slower
print 'Hello';
// print_r - Gives a bit more info. Can be used to print arrays
print_r('Hello');
print_r([1, 2, 3]);
// var_dump - Even more info like data type and length
var_dump('Hello');
var_dump([1, 2, 3]);
// Escaping characters with a backslash
echo "Is your name O\'reilly?";
/* ------------ Comments ------------ */
// This is a single line comment
/*
* This is a multi-line comment
*
* It can be used to comment out a block of code
*/
// If there is more content after the PHP, such as this file, you do need the ending tag. Otherwise you do not.
?>
<!-- You can output any HTML that you want within a .php file -->
<!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>My PHP Website</title>
</head>
<body>
<!-- You can output PHP including variables, etc -->
<h1>Hello <?php echo 'Brad'; ?></h1>
<!-- You may only drop the semi-colon after a statement when the statement is followed immediately by a closing PHP tag ?>. -->
<h1>Hello <?= 'Brad' ?></h1>
</body>
</html>