Last active
January 5, 2021 21:05
-
-
Save amereservant/5614069 to your computer and use it in GitHub Desktop.
Simple PHP array of the Books of the Bible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$books = array( | |
1 => 'Genesis', | |
2 => 'Exodus', | |
3 => 'Leviticus', | |
4 => 'Numbers', | |
5 => 'Deuteronomy', | |
6 => 'Joshua', | |
7 => 'Judges', | |
8 => 'Ruth', | |
9 => '1 Samuel', | |
10 => '2 Samuel', | |
11 => '1 Kings', | |
12 => '2 Kings', | |
13 => '1 Chronicles', | |
14 => '2 Chronicles', | |
15 => 'Ezra', | |
16 => 'Nehemiah', | |
17 => 'Esther', | |
18 => 'Job', | |
19 => 'Psalm', | |
20 => 'Proverbs', | |
21 => 'Ecclesiastes', | |
22 => 'Song of Solomon', | |
23 => 'Isaiah', | |
24 => 'Jeremiah', | |
25 => 'Lamentations', | |
26 => 'Ezekiel', | |
27 => 'Daniel', | |
28 => 'Hosea', | |
29 => 'Joel', | |
30 => 'Amos', | |
31 => 'Obadiah', | |
32 => 'Jonah', | |
33 => 'Micah', | |
34 => 'Nahum', | |
35 => 'Habakkuk', | |
36 => 'Zephaniah', | |
37 => 'Haggai', | |
38 => 'Zechariah', | |
39 => 'Malachi', | |
40 => 'Matthew', | |
41 => 'Mark', | |
42 => 'Luke', | |
43 => 'John', | |
44 => 'Acts', | |
45 => 'Romans', | |
46 => '1 Corinthians', | |
47 => '2 Corinthians', | |
48 => 'Galatians', | |
49 => 'Ephesians', | |
50 => 'Philippians', | |
51 => 'Colossians', | |
52 => '1 Thessalonians', | |
53 => '2 Thessalonians', | |
54 => '1 Timothy', | |
55 => '2 Timothy', | |
56 => 'Titus', | |
57 => 'Philemon', | |
58 => 'Hebrews', | |
59 => 'James', | |
60 => '1 Peter', | |
61 => '2 Peter', | |
62 => '1 John', | |
63 => '2 John', | |
64 => '3 John', | |
65 => 'Jude', | |
66 => 'Revelation' | |
); | |
// OR | |
$books = array( | |
1 => 'Genesis', 2 => 'Exodus', 3 => 'Leviticus', 4 => 'Numbers', | |
5 => 'Deuteronomy', 6 => 'Joshua', 7 => 'Judges', 8 => 'Ruth', | |
9 => '1 Samuel', 10 => '2 Samuel', 11 => '1 Kings', 12 => '2 Kings', | |
13 => '1 Chronicles', 14 => '2 Chronicles', 15 => 'Ezra', 16 => 'Nehemiah', | |
17 => 'Esther', 18 => 'Job', 19 => 'Psalm', 20 => 'Proverbs', | |
21 => 'Ecclesiastes', 22 => 'Song of Solomon', 23 => 'Isaiah', 24 => 'Jeremiah', | |
25 => 'Lamentations', 26 => 'Ezekiel', 27 => 'Daniel', 28 => 'Hosea', | |
29 => 'Joel', 30 => 'Amos', 31 => 'Obadiah', 32 => 'Jonah', | |
33 => 'Micah', 34 => 'Nahum', 35 => 'Habakkuk', 36 => 'Zephaniah', | |
37 => 'Haggai', 38 => 'Zechariah', 39 => 'Malachi', 40 => 'Matthew', | |
41 => 'Mark', 42 => 'Luke', 43 => 'John', 44 => 'Acts', | |
45 => 'Romans', 46 => '1 Corinthians', 47 => '2 Corinthians', 48 => 'Galatians', | |
49 => 'Ephesians', 50 => 'Philippians', 51 => 'Colossians', 52 => '1 Thessalonians', | |
53 => '2 Thessalonians', 54 => '1 Timothy', 55 => '2 Timothy', 56 => 'Titus', | |
57 => 'Philemon', 58 => 'Hebrews', 59 => 'James', 60 => '1 Peter', | |
61 => '2 Peter', 62 => '1 John', 63 => '2 John', 64 => '3 John', | |
65 => 'Jude', 66 => 'Revelation' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks