<?php
/*@@@
@ akam AT AkamENG dot COM
@ UTF-8 <--> Unicode Convertor
@ Supports 6 bit
@ For my Kurdish People!
*/
/*@@@@
*@ function Unicode_to_UTF: Decode Unicode Values to UTF-8
*@@@@*/
function Unicode_to_UTF( $input, $array=TRUE){
if(!is_array($input)){
$input = str_replace('&#', '', $input);
$input = explode(';', $input);
$len = count($input);
unset($input[$len-1]);
}else{
foreach($input as $k => $v){
$input[$k] = str_replace(array('&#', ';'), '', $v);
}
}
for($i=0; $i < count($in?>