alphanormalize_php  v.03.00.03 — June 17, 2020
greek_to_alpha.inc
Go to the documentation of this file.
1 <?php // -*- coding: utf-8 -*-
2 
3 /** \file greek_to_alpha.inc
4  * (December 31, 2013)
5  *
6  * \brief Greek letters.
7  *
8  * Piece of alphanormalize_php.
9  * https://bitbucket.org/OPiMedia/alphanormalize_php
10  *
11  * GPLv3 --- Copyright (C) 2013 Olivier Pirson
12  * http://www.opimedia.be/
13  */
14 
15 
16 /**
17  * Associative table: Greek letter => Roman alphabetic character corresponding.
18  *
19  * For example: character of the Greek letter epsilon <code>'ε'</code> => <code>'e'</code>.
20  *
21  * Adopts the standard ONU/ELOT : see http://www.opimedia.be/DS/mementos/grecs.htm .
22  */
24  'Α' => 'A',
25  'Β' => 'V',
26  'Γ' => 'G',
27  'Δ' => 'D',
28  'Ε' => 'E',
29  'Ζ' => 'Z',
30  'Η' => 'I',
31  'Θ' => 'TH',
32  'Ι' => 'I',
33  'Κ' => 'K',
34  'Λ' => 'L',
35  'Μ' => 'M',
36  'Ν' => 'N',
37  'Ξ' => 'X',
38  'Ο' => 'O',
39  'Π' => 'P',
40  'Ρ' => 'R',
41  'Σ' => 'S',
42  'Τ' => 'T',
43  'Υ' => 'Y',
44  'Φ' => 'F',
45  'Χ' => 'CH',
46  'Ψ' => 'PS',
47  'Ω' => 'O',
48  'α' => 'a',
49  'β' => 'v',
50  'γ' => 'g',
51  'δ' => 'd',
52  'ε' => 'e',
53  'ζ' => 'z',
54  'η' => 'i',
55  'θ' => 'th',
56  'ι' => 'i',
57  'κ' => 'k',
58  'λ' => 'l',
59  'μ' => 'm',
60  'ν' => 'n',
61  'ξ' => 'x',
62  'ο' => 'o',
63  'π' => 'p',
64  'ρ' => 'r',
65  'ς' => 's',
66  'σ' => 's',
67  'τ' => 't',
68  'υ' => 'y',
69  'φ' => 'f',
70  'χ' => 'ch',
71  'ψ' => 'ps',
72  'ω' => 'o',
73  'ϑ' => 'th',
74  'ϒ' => 'y',
75  'ϖ' => 'p'
76 );
77 
78 
79 return true;
80 
81 ?>
$GREEK_TO_ALPHA