File tree 20 files changed +70
-260
lines changed
20 files changed +70
-260
lines changed Original file line number Diff line number Diff line change 1
1
< ul class ="nav nav-list ">
2
2
< li >
3
3
< a href ="/pages/php-basics.html "> PHP Basics</ a >
4
- {% include menu/php-basics.html %}
5
4
</ li >
6
5
< li >
7
6
< a href ="/pages/functions.html "> Functions</ a >
8
- {% include menu/functions.html %}
9
7
</ li >
10
8
< li >
11
9
< a href ="/pages/strings-and-patterns.html "> Strings & Patterns</ a >
12
- {% include menu/strings-and-patterns.html %}
13
10
</ li >
14
11
< li >
15
12
< a href ="/pages/arrays.html "> Arrays</ a >
16
- {% include menu/arrays.html %}
17
13
</ li >
18
14
< li >
19
15
< a href ="/pages/io.html "> I/O</ a >
20
- {% include menu/io.html %}
21
16
</ li >
22
17
< li >
23
18
< a href ="/pages/security.html "> Security</ a >
24
- {% include menu/security.html %}
25
19
</ li >
26
20
</ ul >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ Facts] ( /pages/arrays.html#facts )
2
+ * [ Iteration] ( /pages/arrays.html#iteration )
3
+ * [ Sorting] ( /pages/arrays.html#sorting )
4
+ * [ Stacks and Queues] ( /pages/arrays.html#stacks__queues )
5
+ * [ Functions] ( /pages/arrays.html#functions )
6
+ * [ SPL, Objects as arrays] ( /pages/arrays.html#spl_objects_as_arrays )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ Reasons] ( /pages/functions.html#reasons )
2
+ * [ Features] ( /pages/functions.html#features )
3
+ * [ By reference] ( /pages/functions.html#by_reference )
4
+ * [ Anonymous Functions, closures] ( /pages/functions.html#anonymous_functions_closures )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ Files] ( /pages/io.html#files )
2
+ * [ Constants] ( /pages/io.html#constants )
3
+ * [ File Modes] ( /pages/io.html#file_modes )
4
+ * [ Locks] ( /pages/io.html#locks )
5
+ * [ File Functions] ( /pages/io.html#file_functions )
6
+ * [ Streams] ( /pages/io.html#streams )
7
+ * [ Types] ( /pages/io.html#types )
8
+ * [ Components] ( /pages/io.html#components )
9
+ * [ Stream Functions] ( /pages/io.html#stream_functions )
10
+ * [ Sockets] ( /pages/io.html#sockets )
11
+ * [ Contexts] ( /pages/io.html#contexts )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ PHP Tags] ( /pages/php-basics.html#php_tags )
2
+ * [ Comments] ( /pages/php-basics.html#comments )
3
+ * [ Operators] ( /pages/php-basics.html#operators )
4
+ * [ Variables] ( /pages/php-basics.html#variables )
5
+ * [ Constants] ( /pages/php-basics.html#constants )
6
+ * [ Controle Structures] ( /pages/php-basics.html#controle_structures )
7
+ * [ Language Constructs] ( /pages/php-basics.html#language_constructs )
8
+ * [ Namespaces] ( /pages/php-basics.html#namespaces )
9
+ * [ Extensions] ( /pages/php-basics.html#extensions )
10
+ * [ Config] ( /pages/php-basics.html#config )
11
+ * [ Performance. Bytecode caching] ( /pages/php-basics.html#performance_bytecode_caching )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ Levels] ( /pages/security.html#levels )
2
+ * [ Concepts] ( /pages/security.html#concepts )
3
+ * [ Validate Input] ( /pages/security.html#validate_input )
4
+ * [ Functions] ( /pages/security.html#functions )
5
+ * [ Register Globals] ( /pages/security.html#register_globals )
6
+ * [ Magic Quotes] ( /pages/security.html#magic_quotes )
7
+ * [ Escaping] ( /pages/security.html#escaping )
8
+ * [ XSS] ( /pages/security.html#xss )
9
+ * [ CSRF] ( /pages/security.html#csrf )
10
+ * [ Sessions] ( /pages/security.html#sessions )
11
+ * [ Session Fixation] ( /pages/security.html#session_fixation )
12
+ * [ Session Hijacking] ( /pages/security.html#session_hijacking )
13
+ * [ Command Injection] ( /pages/security.html#command_injection )
14
+ * [ Security Settings] ( /pages/security.html#security_settings )
15
+ * [ Encryption, Hashing algorithms] ( /pages/security.html#encryption_hashing_algorithms )
16
+ * [ File uploads] ( /pages/security.html#file_uploads )
17
+ * [ Data storage] ( /pages/security.html#data_storage )
18
+ * [ SSL] ( /pages/security.html#ssl )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ * [ Functions] ( /pages/strings-and-patterns.html#functions )
2
+ * [ Escape Sequences] ( /pages/strings-and-patterns.html#escape_sequences )
3
+ * [ Matching Strings] ( /pages/strings-and-patterns.html#matching_strings )
4
+ * [ Extracting] ( /pages/strings-and-patterns.html#extracting )
5
+ * [ Formatting] ( /pages/strings-and-patterns.html#formatting )
6
+ * [ Print Family] ( /pages/strings-and-patterns.html#print_family )
7
+ * [ Printf Formatting Specifiers] ( /pages/strings-and-patterns.html#printf_formatting_specifiers )
8
+ * [ Replacement] ( /pages/strings-and-patterns.html#replacement )
9
+ * [ PCRE Meta Characters] ( /pages/strings-and-patterns.html#pcreperl_compatible_regular_expressions__meta_characters )
10
+ * [ PCRE Pattern Modifiers] ( /pages/strings-and-patterns.html#pcre__pattern_modifiers )
11
+ * [ HEREDOC and NOWDOC] ( /pages/strings-and-patterns.html#heredoc_and_nowdoc )
Original file line number Diff line number Diff line change 2
2
layout: layout
3
3
---
4
4
5
- < h1 id ="{{ page.title | downcase | replace: ' ', '-' }} "> {{ page.title }}</ h1 >
6
- {{ content }}
5
+ < h1 id ="{{ page.title | downcase | replace: ' ', '-' }} "> {{ page.title }}</ h1 >
6
+ < hr />
7
+ {{ content }}
7
8
8
9
{% include JB/comments %}
Original file line number Diff line number Diff line change @@ -5,12 +5,7 @@ description: ""
5
5
---
6
6
{% include JB/setup %}
7
7
8
- * Enumerated Arrays
9
- * Associative Arrays
10
- * Array Iteration
11
- * Multi-Dimensional Arrays
12
- * Array Functions
13
- * SPL, Objects as arrays
8
+ {% include menu/arrays.md %}
14
9
15
10
* * *
16
11
Original file line number Diff line number Diff line change @@ -5,14 +5,7 @@ description: ""
5
5
---
6
6
{% include JB/setup %}
7
7
8
-
9
- * Syntax
10
- * Arguments
11
- * Variables
12
- * References
13
- * Returns
14
- * Variable Scope
15
- * Anonymous Functions, closures
8
+ {% include menu/functions.md %}
16
9
17
10
## Reasons
18
11
Original file line number Diff line number Diff line change @@ -5,13 +5,7 @@ description: ""
5
5
---
6
6
{% include JB/setup %}
7
7
8
- * Files
9
- * Reading
10
- * Writing
11
- * File System Functions
12
- * Streams
13
- * Contexts
14
-
8
+ {% include menu/io.md %}
15
9
16
10
* * *
17
11
Original file line number Diff line number Diff line change @@ -5,18 +5,7 @@ description: ""
5
5
---
6
6
{% include JB/setup %}
7
7
8
-
9
- * Syntax
10
- * Operators
11
- * Variables
12
- * Constants
13
- * Control Structures
14
- * Language Constructs and Functions
15
- * Namespaces
16
- * Extensions
17
- * Config
18
- * Performance/bytecode caching
19
-
8
+ {% include menu/php-basics.md %}
20
9
21
10
## PHP Tags
22
11
You can’t perform that action at this time.
0 commit comments