-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontent.html
More file actions
135 lines (102 loc) · 4.17 KB
/
content.html
File metadata and controls
135 lines (102 loc) · 4.17 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<script src="CodeMirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="CodeMirror/lib/codemirror.css">
<!--<script src="CodeMirror/mode/javascript/javascript.js"></script>-->
<script src="CodeMirror/mode/php/php.js"></script>
<div id="content">
<h1>H1 PHP basics</h1>
<div id="1">
<a href="ch1.php#syntax">Syntax</a>
<a href="ch1.php#anatomy">Anatomy of a PHP script</a>
<a href="ch1.php#datatypes">Data types</a>
<a href="ch1.php#variables">Variables</a>
<a href="ch1.php#constants">Constants</a>
<a href="ch1.php#operators">Operators</a>
<a href="ch1.php#controlstructures">Control structures</a>
<a href="ch1.php#namespaces">Namespaces</a>
</div>
<h1>H2 Functions</h1>
<div id="2">
<a href="ch2.php#syntax">Basic Syntax</a>
<a href="ch2.php#returningvalues">Returning Values</a>
<a href="ch2.php#variablescope">Variable Scope</a>
</div>
<h1>H3 Strings and Patterns</h1>
<div id="3">
<a href="ch3.php#numbertypes">Display an asterisk</a>
<a href="ch3.php#variableinterpolation">Variable interpolation</a>
<a href="ch3.php#heredoc">Heredoc nowdoc syntax</a>
<a href="ch3.php#escaping">Escaping literal values</a>
<a href="ch3.php#working">Working with Strings</a>
<a href="ch3.php#searching">Comparing, Searching and Replacing Strings</a>
<a href="ch3.php#formatting">Formatting Strings</a>
</div>
<h1>H4 Array operations</h1>
<div id="4">
<a href="ch4p1arraybasics.php">H4 Array basics</a>
<a href="ch4p2arrayoperations.php">H4 Array operations</a>
<a href="ch4p3arrayiteration.php">H4 Array iteration</a>
<a href="ch4p4sortingarrays.php">H4 Sorting Arrays</a>
</div>
<h1>H5 Web Programming</h1>
<div id="5">
<a href="ch5.php#numbertypes">H5 Forms and urls</a>
</div>
<h1>H6 Files, Streams, and Network Programming</h1>
<div id="6">
<a href="ch6Listing6.1.php">H6.1 Reading files with file handles</a>
<a href="ch6Listing6.2.php">H6.2 Detecting end-of-file</a>
<a href="ch6Listing6.3.php">H6.3 Reading CSV files</a>
<a href="ch6Listing6.4.php">H6.4 Accessing network resources as files</a>
<a href="ch6Listing6.4.php">H6 Just some functions</a>
</div>
<h1>H7 Database Programming</h1>
<div id="7">
</div>
<h1>H8 Data Formats and Types</h1>
<div id="8">
<a href="ch8p1JSON.php">H8.1 JSON encoding/decoding</a>
<a href="ch8p2DatesAndTimes.php">H8.2 Dates and times</a>
<a href="ch8p3XML.php">H8.3 Extensible Markup Language</a>
<a href="ch8p4SimpleXML.php">H8.4 SimpleXML</a>
<a href="ch8p5DOM.php">H8.5 DOM</a>
</div>
<h1>H9 OO Programming in PHP</h1>
<div id="9">
<a href="ch9p1OOPfundamentals.php">H9.1 OOP fundamentals</a>
<a href="ch9p1OOPfundamentals.php#p2">H9.2 Class Methods and Properties</a>
<a href="ch9p3Constants, Statics & Props.php#p3">H9.3 Constants, Statics en Props</a>
<a href="ch9p4Interfaces and Abstract classes.php">H9.4 Interfaces and Abstract classes</a>
</div>
<h1>H10 Closures and Callbacks</h1>
<div id="10">
<a href="ch10p1Closures.php">H10.1 Closures</a>
<a href="ch10p2Callbacks.php">H10.2 Callbacks</a>
</div>
<h1>H11 Elements of OO Design</h1>
<div id="11">
<a href="ch11p1DesigningCodes.php">H11.1 Designing Codes</a>
<a href="ch11p2DesignPatternTheory.php">H11.2 Design Pattern Theory</a>
<a href="ch11p3SPL.php">H11.3 The Standard PHP Library</a>
<a href="ch11p4Generators.php">H11.4 Generators</a>
</div>
<h1>H12 Errors and Exceptions</h1>
<div id="12">
<a href="ch12p1ErrorsErrorManagement.php">Errors And Error management</a>
<a href="ch12p2Exceptions.php">Exceptions</a>
</div>
<h1>H13 Security</h1>
<div id="13">
</div>
<h1>H14 Web Services</h1>
<div id="14">
</div>
<h1>App A Array Functions</h1>
<div>
</div>
<h1>App B Filter Extension Filters and Flags</h1>
<div>
</div>
<h1>App C phpdbg</h1>
<div>
</div>
</div>