#DEBUG
  assert('is_string($s)');
  #DEBUG_END

















    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END




















































  #DEBUG
  assert('is_string($s)');
  assert('is_bool($strip)');
  assert('is_bool($entity_decode)');
  assert('is_string($replacement)');
  #DEBUG_END










































    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END


















































  #DEBUG
  assert('is_string($s)');
  #DEBUG_END

















    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END




























<?php // -*- coding: utf-8 -*-

/** \file alphanormalize.inc
 * (June 17, 2020)
 *
 * \brief Main module: Simple functions to remove "accents" and  replace non-alphanumeric characters.
 *
 * Piece of alphanormalize_php.
 * https://bitbucket.org/OPiMedia/alphanormalize_php
 *
 * LGPL3 --- Copyright (C) 2013, 2016, 2020 Olivier Pirson
 * http://www.opimedia.be/
 *
 * @version 03.00.03 --- June 17, 2020
 * @author Olivier Pirson <olivier.pirson.opi@gmail.com>
 * @package Alphanormalize
 *
 *
 * \mainpage alphanormalize_php
 * Simple functions to remove "accents" and  replace non-alphanumeric characters.
 * See alphanormalize.inc file.
 *
 * <ul>
 *   <li>Sources on Bitbucket: <a href="https://bitbucket.org/OPiMedia/alphanormalize_php" target="_blank"><tt>https://bitbucket.org/OPiMedia/alphanormalize_php</tt></a></li>
 *   <li><a href="http://www.opimedia.be/DS/webdev/PHP/alphanormalize-php/docs/" target="_blank">Online HTML documentation</a></li>
 *   <li><a href="http://www.opimedia.be/DS/webdev/PHP/alphanormalize-php/alphanormalize-test.php" target="_blank">Online simple test page</a></li>
 * </ul>
 *
 * The main function is similar to alphanormalize function of the online JavaScript application
 * <a href="http://www.opimedia.be/DS/online-tools/txt2/" target="_blank"><tt>http://www.opimedia.be/DS/online-tools/txt2/</tt></a>
 *
 * <img src="alphanormalize_php_64x64.png" width="64" height="64" alt="[alphanormalize_php]">
 *
 * <div>
 * LGPL
 * -----
 * Copyright (C) 2013, 2016, 2020 Olivier Pirson
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * </div>
 *
 * <div align="right">
 *   &copy; Olivier <span style="font-variant:small-caps">Pirson</span>\n
 *   <a class="net" href="http://www.opimedia.be/" target="_blank"><tt>www.opimedia.be</tt></a>\n
 *   <a class="mail" href="mailto:olivier.pirson.opi@gmail.com?subject=[alphanormalize_php]"><tt>olivier.pirson.opi@gmail.com</tt></a>
 * </div>
 */

namespace Alphanormalize;



/**
 * \brief Copy of $s without "accents".
 *
 * Returns a copy of which $s "accented" characters were converted by removing their "accent"
 *   (the converted characters are those of the associative table $ACCENTALPHA_TO_ALPHA from accentalpha_to_alpha.inc file).
 *
 * For example: <code>'Élément'</code> => <code>'Element'</code>.
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_accentalpha_to_alpha($s$encoding=null) {




  require 
'accentalpha_to_alpha.inc';

  
$a = array();  // array of converted characters

  
if ($encoding === null) {
    
$len mb_strlen($s);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1);

      
array_push($a, (array_key_exists($c$ACCENTALPHA_TO_ALPHA)
                      ? 
$ACCENTALPHA_TO_ALPHA[$c]
                      : 
$c));
    }
  }
  else {




    
$len mb_strlen($s$encoding);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1$encoding);

      
array_push($a, (array_key_exists($c$ACCENTALPHA_TO_ALPHA)
                      ? 
$ACCENTALPHA_TO_ALPHA[$c]
                      : 
$c));
    }
  }

  return 
implode($a);
}


/**
 * \brief
 * Copy of $s without "accents"
 * with the characters of the Greek alphabet were replaced
 * and all non-alphanumeric characters are replaced by $replacement.
 *
 * Returns a copy of $s:
 *   - each "accented" characters is converted by removing its "accent"
 *     (the converted characters are those of the associative table $ACCENTALPHA_TO_ALPHA from accentalpha_to_alpha.inc file) ;
 *   - each characters of the Greek alphabet is converted to alphabetic characters
 *     (the converted characters are those of the associative table $GREEK_TO_ALPHA from greek_to_alpha.inc file) ;
 *   - each group of other characters is replaced by $replacement.
 *
 * For example: <code>'Élément ; α and ω.'</code> => <code>'Element_a_and_o_'</code>.
 *
 * Adopts the standard ONU/ELOT: see http://www.opimedia.be/DS/mementos/grecs.htm .
 *
 * If $strip
 * then begins delete HTML tags.
 *
 * If $entity_decode
 * then begins convert HTML entities to normal characters.
 * (Previous PHP 5.4, all HTML entities are not supported!)
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param bool $strip
 * @param bool $entity_decode
 * @param string $replacement
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_alphanormalize($s$strip=false$entity_decode=false$replacement='_'$encoding=null) {







  require 
'accentalpha_to_alpha.inc';
  require 
'greek_to_alpha.inc';

  if ( 
$strip ) {  // delete HTML tags
    
$s strip_tags($s);
  }

  if ( 
$entity_decode ) {  // convert HTML entities to normal characters
    
$s html_entity_decode($sENT_COMPATmb_internal_encoding());
  }

  
$not_consecutive true;  // true if the previous character is not $replacement, else false
  
$a = array();  // array of converted characters

  
if ($encoding === null) {
    
$len mb_strlen($s);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1);

      if (((
'0' <= $c) && ($c <= '9'))
          || ((
'A' <= $c) && ($c <= 'Z'))
          || ((
'a' <= $c) && ($c <= 'z'))) {                  // alphanumeric character
        
array_push($a$c);
        
$not_consecutive true;
      }
      elseif (
array_key_exists($c$ACCENTALPHA_TO_ALPHA)) {  // "accented" character -> 1 or 2 alphabetic characters
        
array_push($a$ACCENTALPHA_TO_ALPHA[$c]);
        
$not_consecutive true;
      }
      elseif (
array_key_exists($c$GREEK_TO_ALPHA)) {        // Greek letter -> 1 or 2 alphabetic characters
        
array_push($a$GREEK_TO_ALPHA[$c]);
        
$not_consecutive true;
      }
      elseif (
$not_consecutive) {                             // other characters -> $replacement, if not already preceded by a $replacement
        
$not_consecutive false;
        
array_push($a$replacement);
      }
    }
  }
  else {




    
$len mb_strlen($s$encoding);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1$encoding);

      if (((
'0' <= $c) && ($c <= '9'))
          || ((
'A' <= $c) && ($c <= 'Z'))
          || ((
'a' <= $c) && ($c <= 'z'))) {                  // alphanumeric character
        
array_push($a$c);
        
$not_consecutive true;
      }
      elseif (
array_key_exists($c$ACCENTALPHA_TO_ALPHA)) {  // "accented" character -> 1 or 2 alphabetic characters
        
array_push($a$ACCENTALPHA_TO_ALPHA[$c]);
        
$not_consecutive true;
      }
      elseif (
array_key_exists($c$GREEK_TO_ALPHA)) {        // Greek letter -> 1 or 2 alphabetic characters
        
array_push($a$GREEK_TO_ALPHA[$c]);
        
$not_consecutive true;
      }
      elseif (
$not_consecutive) {                             // other characters -> $replacement, if not already preceded by a $replacement
        
$not_consecutive false;
        
array_push($a$replacement);
      }
    }
  }

  return 
implode($a);
}


/**
 * \brief Copy of $s with the characters of the Greek alphabet were replaced.
 *
 * Returns a copy of $s with the characters of the Greek alphabet were converted to alphabetic characters
 *   (the converted characters are those of the associative table $GREEK_TO_ALPHA from greek_to_alpha.inc file).
 *
 * Adopts the standard ONU/ELOT: see http://www.opimedia.be/DS/mementos/grecs.htm .
 *
 * For example: <code>'α and ω'</code> => <code>'a and o'</code>.
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_greek_to_alpha($s$encoding=null) {




  require 
'greek_to_alpha.inc';

  
$a = array();  // array of converted characters

  
if ($encoding === null) {
    
$len mb_strlen($s);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1);

      
array_push($a, (array_key_exists($c$GREEK_TO_ALPHA)
                      ? 
$GREEK_TO_ALPHA[$c]
                      : 
$c));
    }
  }
  else {




    
$len mb_strlen($s$encoding);

    for (
$i 0$i $len$i++) {
      
$c mb_substr($s$i1$encoding);

      
array_push($a, (array_key_exists($c$GREEK_TO_ALPHA)
                      ? 
$GREEK_TO_ALPHA[$c]
                      : 
$c));
    }
  }

  return 
implode($a);
}


/**
 * \brief Return the version of this module.
 *
 * @return string
 */
function version() {
  return 
'03.00.03 --- June 17, 2020';
}


return 
true;

?>

<?php // -*- coding: utf-8 -*-

/** \file alphanormalize.inc
 * (June 17, 2020)
 *
 * \brief Main module: Simple functions to remove "accents" and  replace non-alphanumeric characters.
 *
 * Piece of alphanormalize_php.
 * https://bitbucket.org/OPiMedia/alphanormalize_php
 *
 * LGPL3 --- Copyright (C) 2013, 2016, 2020 Olivier Pirson
 * http://www.opimedia.be/
 *
 * @version 03.00.03 --- June 17, 2020
 * @author Olivier Pirson <olivier.pirson.opi@gmail.com>
 * @package Alphanormalize
 *
 *
 * \mainpage alphanormalize_php
 * Simple functions to remove "accents" and  replace non-alphanumeric characters.
 * See alphanormalize.inc file.
 *
 * <ul>
 *   <li>Sources on Bitbucket: <a href="https://bitbucket.org/OPiMedia/alphanormalize_php" target="_blank"><tt>https://bitbucket.org/OPiMedia/alphanormalize_php</tt></a></li>
 *   <li><a href="http://www.opimedia.be/DS/webdev/PHP/alphanormalize-php/docs/" target="_blank">Online HTML documentation</a></li>
 *   <li><a href="http://www.opimedia.be/DS/webdev/PHP/alphanormalize-php/alphanormalize-test.php" target="_blank">Online simple test page</a></li>
 * </ul>
 *
 * The main function is similar to alphanormalize function of the online JavaScript application
 * <a href="http://www.opimedia.be/DS/online-tools/txt2/" target="_blank"><tt>http://www.opimedia.be/DS/online-tools/txt2/</tt></a>
 *
 * <img src="alphanormalize_php_64x64.png" width="64" height="64" alt="[alphanormalize_php]">
 *
 * <div>
 * LGPL
 * -----
 * Copyright (C) 2013, 2016, 2020 Olivier Pirson
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * </div>
 *
 * <div align="right">
 *   &copy; Olivier <span style="font-variant:small-caps">Pirson</span>\n
 *   <a class="net" href="http://www.opimedia.be/" target="_blank"><tt>www.opimedia.be</tt></a>\n
 *   <a class="mail" href="mailto:olivier.pirson.opi@gmail.com?subject=[alphanormalize_php]"><tt>olivier.pirson.opi@gmail.com</tt></a>
 * </div>
 */

namespace Alphanormalize;



/**
 * \brief Copy of $s without "accents".
 *
 * Returns a copy of which $s "accented" characters were converted by removing their "accent"
 *   (the converted characters are those of the associative table $ACCENTALPHA_TO_ALPHA from accentalpha_to_alpha.inc file).
 *
 * For example: <code>'Élément'</code> => <code>'Element'</code>.
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_accentalpha_to_alpha($s, $encoding=null) {
  #DEBUG
  assert('is_string($s)');
  #DEBUG_END

  require 'accentalpha_to_alpha.inc';

  $a = array();  // array of converted characters

  if ($encoding === null) {
    $len = mb_strlen($s);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1);

      array_push($a, (array_key_exists($c, $ACCENTALPHA_TO_ALPHA)
                      ? $ACCENTALPHA_TO_ALPHA[$c]
                      : $c));
    }
  }
  else {
    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END

    $len = mb_strlen($s, $encoding);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1, $encoding);

      array_push($a, (array_key_exists($c, $ACCENTALPHA_TO_ALPHA)
                      ? $ACCENTALPHA_TO_ALPHA[$c]
                      : $c));
    }
  }

  return implode($a);
}


/**
 * \brief
 * Copy of $s without "accents"
 * with the characters of the Greek alphabet were replaced
 * and all non-alphanumeric characters are replaced by $replacement.
 *
 * Returns a copy of $s:
 *   - each "accented" characters is converted by removing its "accent"
 *     (the converted characters are those of the associative table $ACCENTALPHA_TO_ALPHA from accentalpha_to_alpha.inc file) ;
 *   - each characters of the Greek alphabet is converted to alphabetic characters
 *     (the converted characters are those of the associative table $GREEK_TO_ALPHA from greek_to_alpha.inc file) ;
 *   - each group of other characters is replaced by $replacement.
 *
 * For example: <code>'Élément ; α and ω.'</code> => <code>'Element_a_and_o_'</code>.
 *
 * Adopts the standard ONU/ELOT: see http://www.opimedia.be/DS/mementos/grecs.htm .
 *
 * If $strip
 * then begins delete HTML tags.
 *
 * If $entity_decode
 * then begins convert HTML entities to normal characters.
 * (Previous PHP 5.4, all HTML entities are not supported!)
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param bool $strip
 * @param bool $entity_decode
 * @param string $replacement
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_alphanormalize($s, $strip=false, $entity_decode=false, $replacement='_', $encoding=null) {
  #DEBUG
  assert('is_string($s)');
  assert('is_bool($strip)');
  assert('is_bool($entity_decode)');
  assert('is_string($replacement)');
  #DEBUG_END

  require 'accentalpha_to_alpha.inc';
  require 'greek_to_alpha.inc';

  if ( $strip ) {  // delete HTML tags
    $s = strip_tags($s);
  }

  if ( $entity_decode ) {  // convert HTML entities to normal characters
    $s = html_entity_decode($s, ENT_COMPAT, mb_internal_encoding());
  }

  $not_consecutive = true;  // true if the previous character is not $replacement, else false
  $a = array();  // array of converted characters

  if ($encoding === null) {
    $len = mb_strlen($s);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1);

      if ((('0' <= $c) && ($c <= '9'))
          || (('A' <= $c) && ($c <= 'Z'))
          || (('a' <= $c) && ($c <= 'z'))) {                  // alphanumeric character
        array_push($a, $c);
        $not_consecutive = true;
      }
      elseif (array_key_exists($c, $ACCENTALPHA_TO_ALPHA)) {  // "accented" character -> 1 or 2 alphabetic characters
        array_push($a, $ACCENTALPHA_TO_ALPHA[$c]);
        $not_consecutive = true;
      }
      elseif (array_key_exists($c, $GREEK_TO_ALPHA)) {        // Greek letter -> 1 or 2 alphabetic characters
        array_push($a, $GREEK_TO_ALPHA[$c]);
        $not_consecutive = true;
      }
      elseif ($not_consecutive) {                             // other characters -> $replacement, if not already preceded by a $replacement
        $not_consecutive = false;
        array_push($a, $replacement);
      }
    }
  }
  else {
    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END

    $len = mb_strlen($s, $encoding);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1, $encoding);

      if ((('0' <= $c) && ($c <= '9'))
          || (('A' <= $c) && ($c <= 'Z'))
          || (('a' <= $c) && ($c <= 'z'))) {                  // alphanumeric character
        array_push($a, $c);
        $not_consecutive = true;
      }
      elseif (array_key_exists($c, $ACCENTALPHA_TO_ALPHA)) {  // "accented" character -> 1 or 2 alphabetic characters
        array_push($a, $ACCENTALPHA_TO_ALPHA[$c]);
        $not_consecutive = true;
      }
      elseif (array_key_exists($c, $GREEK_TO_ALPHA)) {        // Greek letter -> 1 or 2 alphabetic characters
        array_push($a, $GREEK_TO_ALPHA[$c]);
        $not_consecutive = true;
      }
      elseif ($not_consecutive) {                             // other characters -> $replacement, if not already preceded by a $replacement
        $not_consecutive = false;
        array_push($a, $replacement);
      }
    }
  }

  return implode($a);
}


/**
 * \brief Copy of $s with the characters of the Greek alphabet were replaced.
 *
 * Returns a copy of $s with the characters of the Greek alphabet were converted to alphabetic characters
 *   (the converted characters are those of the associative table $GREEK_TO_ALPHA from greek_to_alpha.inc file).
 *
 * Adopts the standard ONU/ELOT: see http://www.opimedia.be/DS/mementos/grecs.htm .
 *
 * For example: <code>'α and ω'</code> => <code>'a and o'</code>.
 *
 * If $encoding === null
 * then use the internal character encoding.
 *
 * @param string $s
 * @param null|string $encoding
 *
 * @return string
 */
function mb_str_greek_to_alpha($s, $encoding=null) {
  #DEBUG
  assert('is_string($s)');
  #DEBUG_END

  require 'greek_to_alpha.inc';

  $a = array();  // array of converted characters

  if ($encoding === null) {
    $len = mb_strlen($s);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1);

      array_push($a, (array_key_exists($c, $GREEK_TO_ALPHA)
                      ? $GREEK_TO_ALPHA[$c]
                      : $c));
    }
  }
  else {
    #DEBUG
    assert('is_string($encoding)');
    #DEBUG_END

    $len = mb_strlen($s, $encoding);

    for ($i = 0; $i < $len; $i++) {
      $c = mb_substr($s, $i, 1, $encoding);

      array_push($a, (array_key_exists($c, $GREEK_TO_ALPHA)
                      ? $GREEK_TO_ALPHA[$c]
                      : $c));
    }
  }

  return implode($a);
}


/**
 * \brief Return the version of this module.
 *
 * @return string
 */
function version() {
  return '03.00.03 --- June 17, 2020';
}


return true;

?>
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308

PHPstripDEBUG

« < > »

9567 b

Stripped:
81 101 156 204 257 277
'<?php':
1
stripped/alphanormalize_php/alphanormalize.inc 2699 b (≅28%)
source: utf_8   destination: utf_8   XHTML: utf_8
JavaScript is disabled!
© Olivier Pirson — DragonSoft DS — v.01.01.04 — June 19, 2020
This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions; see the source for copying conditions.