<?php 
 
// we must consider amending this due to the fact that spaces are often inserted after the kerned characters 
// so that maybe we should refer to a dictionary. 
 
$dekernArray = array( 
'IJ' => 'IJ', 
'ij' => 'ij', 
'LJ' => 'LJ', 
'Lj' => 'Lj', 
'lj' => 'lj', 
'NJ' => 'NJ', 
'Nj' => 'Nj', 
'nj' => 'nj', 
'DZ' => 'DJ', 
'Dz' => 'Dz', 
'dz' => 'dz', 
'ʦ' => 'ts', 
 
//'' => '------', 
//'' => '------', 
 
'ff' => 'ff', 
'fi' => 'fi', 
'fl' => 'fl', 
'ffi' => 'ffi', 
'ffl' => 'ffl', 
); 
 
?>
 
 |