Created
September 8, 2021 01:24
-
-
Save bookchiq/41f01ca302636ca570f408f9705105bb to your computer and use it in GitHub Desktop.
Bible books with their abbreviations
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 | |
$bible_books = array( | |
'Genesis' => array( | |
'Gen', | |
'Gn', | |
'Ge', | |
), | |
'Exodus' => array( | |
'Exo', | |
'Ex', | |
'Exod', | |
), | |
'Leviticus' => array( | |
'Lev', | |
'Lv', | |
), | |
'Numbers' => array( | |
'Num', | |
'Nm', | |
'Nu', | |
), | |
'Deuteronomy' => array( | |
'Deu', | |
'Dt', | |
'Deut', | |
), | |
'Joshua' => array( | |
'Jos', | |
'Josh', | |
), | |
'Judges' => array( | |
'Jdg', | |
'Judg', | |
), | |
'Ruth' => array( | |
'Rth', | |
'Rt', | |
'Rut', | |
'Ru', | |
), | |
'1 Samuel' => array( | |
'1 Sam', | |
'1Sam', | |
'1 Sa', | |
'1Sa', | |
'1 S', | |
'1S', | |
'1 Sm', | |
'1Sm', | |
), | |
'2 Samuel' => array( | |
'2 Sam', | |
'2Sam', | |
'2 Sa', | |
'2Sa', | |
'2 S', | |
'2S', | |
'2 Sm', | |
'2Sm', | |
), | |
'1 Kings' => array( | |
'1 Ki', | |
'1Ki', | |
'1 Kgs', | |
'1Kgs', | |
), | |
'2 Kings' => array( | |
'2 Ki', | |
'2Ki', | |
'2 Kgs', | |
'2Kgs', | |
), | |
'1 Chronicles' => array( | |
'1 Chr', | |
'1Chr', | |
'1 Ch', | |
'1Ch', | |
'1 Chron', | |
'1Chron', | |
), | |
'2 Chronicles' => array( | |
'2 Chr', | |
'2Chr', | |
'2 Ch', | |
'2Ch', | |
'2 Chron', | |
'2Chron', | |
), | |
'Ezra' => array( | |
'Ezr', | |
'Esr', | |
'1 Ezr', | |
'1Ezr', | |
), | |
'Nehemiah' => array( | |
'Neh', | |
'Ne', | |
'2 Ezr', | |
'2Ezr', | |
), | |
'Esther' => array( | |
'Est', | |
'Esth', | |
), | |
'Job' => array( | |
'Job', | |
'Jb', | |
), | |
'Psalms' => array( | |
'Psa', | |
'Ps', | |
'Psalm', | |
), | |
'Proverbs' => array( | |
'Pro', | |
'Pr', | |
'Prov', | |
'Prv', | |
), | |
'Ecclesiastes' => array( | |
'Ecc', | |
'Ec', | |
'Eccl', | |
), | |
'Song of Solomon' => array( | |
'Sng', | |
'Song', | |
'Canticles', | |
'Cant', | |
), | |
'Isaiah' => array( | |
'Isa', | |
'Is', | |
), | |
'Jeremiah' => array( | |
'Jer', | |
'Jr', | |
), | |
'Lamentations' => array( | |
'Lam', | |
'La', | |
'Lm', | |
), | |
'Ezekiel' => array( | |
'Ezk', | |
'Ez', | |
'Ezek', | |
'Eze', | |
), | |
'Daniel' => array( | |
'Dan', | |
'Da', | |
'Dn', | |
), | |
'Hosea' => array( | |
'Hos', | |
'Ho', | |
), | |
'Joel' => array( | |
'Jol', | |
'Jl', | |
), | |
'Amos' => array( | |
'Amo', | |
'Am', | |
), | |
'Obadiah' => array( | |
'Oba', | |
'Ob', | |
'Obad', | |
'Obd', | |
), | |
'Jonah' => array( | |
'Jon', | |
'Jnh', | |
), | |
'Micah' => array( | |
'Mic', | |
'Mi', | |
'Mch', | |
), | |
'Nahum' => array( | |
'Nah', | |
'Na', | |
'Nam', | |
), | |
'Habakkuk' => array( | |
'Hab', | |
'Ha', | |
), | |
'Zephaniah' => array( | |
'Zeph', | |
'Zep', | |
), | |
'Haggai' => array( | |
'Hag', | |
'Hagg', | |
), | |
'Zechariah' => array( | |
'Zech', | |
'Zec', | |
'Zch', | |
), | |
'Malachi' => array( | |
'Mal', | |
'Ml', | |
), | |
'Matthew' => array( | |
'Mt', | |
'Mat', | |
'Matt', | |
), | |
'Mark' => array( | |
'Mk', | |
'Mr', | |
'Mrk', | |
), | |
'Luke' => array( | |
'Lk', | |
'Luk', | |
'L', | |
'Lu', | |
), | |
'John' => array( | |
'Jn', | |
'Jhn', | |
'J', | |
'Joh', | |
), | |
'Acts' => array( | |
'Act', | |
'Ac', | |
), | |
'Romans' => array( | |
'Rom', | |
'Ro', | |
'R', | |
'Rm', | |
), | |
'1 Corinthians' => array( | |
'1 Cor', | |
'1Cor', | |
'1 Co', | |
'1Co', | |
'1 K', | |
'1K', | |
), | |
'2 Corinthians' => array( | |
'2 Cor', | |
'2Cor', | |
'2 Co', | |
'2Co', | |
'2 K', | |
'2K', | |
), | |
'Galatians' => array( | |
'Gal', | |
'Ga', | |
'G', | |
), | |
'Ephesians' => array( | |
'Eph', | |
'Ep', | |
'E', | |
), | |
'Philippians' => array( | |
'Phil', | |
'Php', | |
'Ph', | |
'Phili', | |
), | |
'Colossians' => array( | |
'Col', | |
), | |
'1 Thessalonians' => array( | |
'1 Th', | |
'1Th', | |
'1 Thess', | |
'1Thess', | |
'1 Thes', | |
'1Thes', | |
), | |
'2 Thessalonians' => array( | |
'2 Th', | |
'2Th', | |
'2 Thess', | |
'2Thess', | |
'2 Thes', | |
'2Thes', | |
), | |
'1 Timothy' => array( | |
'1 Tim', | |
'1Tim', | |
'1 Ti', | |
'1Ti', | |
'1 T', | |
'1T', | |
'1 Tm', | |
'1Tm', | |
), | |
'2 Timothy' => array( | |
'2 Tim', | |
'2Tim', | |
'2 Ti', | |
'2Ti', | |
'2 T', | |
'2T', | |
'2 Tm', | |
'2Tm', | |
), | |
'Titus' => array( | |
'Tit', | |
'Tt', | |
), | |
'Philemon' => array( | |
'Phm', | |
'Phlm', | |
'Philem', | |
'Phile', | |
), | |
'Hebrews' => array( | |
'Heb', | |
'Hebr', | |
'H', | |
'Hbr', | |
), | |
'James' => array( | |
'Jas', | |
'Jam', | |
'Ja', | |
), | |
'1 Peter' => array( | |
'1 Pet', | |
'1Pet', | |
'1 Pt', | |
'1Pt', | |
'1 P', | |
'1P', | |
'1 Pe', | |
'1Pe', | |
), | |
'2 Peter' => array( | |
'2 Pet', | |
'2Pet', | |
'2 Pt', | |
'2Pt', | |
'2 P', | |
'2P', | |
'2 Pe', | |
'2Pe', | |
), | |
'1 John' => array( | |
'1 Jn', | |
'1Jn', | |
'1 Jo', | |
'1Jo', | |
'1 J', | |
'1J', | |
), | |
'2 John' => array( | |
'2 Jn', | |
'2Jn', | |
'2 Jo', | |
'2Jo', | |
'2 J', | |
'2J', | |
), | |
'3 John' => array( | |
'3 Jn', | |
'3Jn', | |
'3 Jo', | |
'3Jo', | |
'3 J', | |
'3J', | |
), | |
'Jude' => array( | |
'Jud', | |
'Jd', | |
), | |
'Revelation' => array( | |
'Rev', | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The same list arranged differently: