I want to to know how can I convert a word into unicode exactly like: http://www.arabunic.free.fr/

can anyone know how to do that using PHP considering that Arabic text may contains ligatures?

thanks

Edit

I'm not sure what is that "unicode" but I need to have the Arabic Character in it's equivalent machine number considering that arabic characters have different contextual forms depending on their position - see here:

http://en.wikipedia.org/wiki/Arabic_alphabet#Table_of_basic_letters

the same character in different position:

ب‎ | ـب‎ | ـبـ‎ | بـ‎

I think it must be a way to convert each Arabic character into it's equivalent number, but how?

Edit

I still believe there's a way to convert each character to it's form depending on positions

any idea is appreciated..

link|improve this question
What exactly do you mean with "Unicode". "Unicode" is a character set with very little practical use. Do you mean a character encoding like UTF-8 or UTF-16? And from what do you want to convert? What the applet on the page you provided creates isn't really "Unicode" either, but JavaScript Unicode escape sequences, which you don't need either if you use UTF-8 or -16. – RoToRa May 30 '11 at 12:25
feedback

4 Answers

up vote 2 down vote accepted
+50

All what you need is function called: utf8Glyphs which you can find it in ArGlyphs.class.php download it from ar-php and visit Ar-PHP for the ArPHP more information about the project and classes.

This will reverse the word with same of its characters (glyphs).

Example of usage:

    <?php
    include('Arabic.php');
    $Arabic = new Arabic('ArGlyphs');

    $text = 'بسم الله الرحمن الرحيم';
    $text = $Arabic->utf8Glyphs($text);
    echo $text;
    ?>
link|improve this answer
this is interesting. yet I got each equivalent right from arabic to utf-8 .. just I need the way where I can change encoding to windows-1256 and all is done :) thx – Al3bed Jun 2 '11 at 22:57
feedback

Just set the element containing the arabic text to "rtl" (right to left), then input correctly spelled arabic and the text will flow with all ligatures looked for.

div { direction:rtl; }

On a side note, don't forget to read "The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)"

Think about that : The "ba" (ب) arabic letter is a "ba" no matter where it appears in the sentence.

link|improve this answer
nice contribution. I'm sorry that I didn't show you for what I want to do that. actually I want to use arabic words in flash using javascript swfobject, but unfortunately, the word shown in pieces and from ltr. I go over the second problem 'ltr' by using strrev fucntion but the word still as is in pieces even with the a class that specify the direction to rtl; I can't say this is not the right answer for my question, so if you know anything about this situation you can tell me :) – Al3bed Jun 1 '11 at 13:57
+1 for the link, Al3bed will be able to formulate the question a lot better with that info... – Ryley Jun 2 '11 at 18:02
feedback

i assume you wnat to convert بهروز to \u0628\u0647\u0631\u0648\u0632 take a look at http://hsivonen.iki.fi/php-utf8/ all you have to do after calling unicodeToUtf8('بهروز') is to convert integers you got in array to hex & make sure they have 4digigts & prefix em with \u & you're done. also you can get same using json_encode

json_encode('بهروز') // returns "\u0628\u0647\u0631\u0648\u0632"

EDIT:

seems you want to get character codes of بب which first one differs from second one, all you have to do is applying bidi algorithm on your text using fribidi_log2vis then getting character code by one of ways i said before.

here's example:

$string = 'بب'; // \u0628\u0628
$bidiString = fribidi_log2vis($string, FRIBIDI_LTR, FRIBIDI_CHARSET_UTF8);
json_encode($bidiString); // \ufe90\ufe91

EDIT:

i just remembered that tcpdf has bidi algorithm which implemented using pure php so if you can not get fribidi extension of php to work, you can use tcpdf (utf8Bidi by default is protected so you need to make it public)

require_once('utf8.inc'); // http://hsivonen.iki.fi/php-utf8/
require_once('tcpdf.php'); // http://www.tcpdf.org/
$t = new TCPDF();
$text = 'بب';
$t->utf8Bidi(utf8ToUnicode($text)); // will return an array like array(0 => 65168, 1 => 65169)
link|improve this answer
well, thank you for this answer, but I don't think utf8.inc will be available in any server + I don't know how to use it! json_encode give the same value to a character regardless it's position in the word. if you see the link up there, when you tick the Arabic ligatures box you got different volume for each - example 'ننن' is the same character but it's shown as 'uFEE7\uFEE8\uFEE6' how I suppose to know to get these + how to reconvert in to the Arabic again? you think unicodeToUtf8 will do the trick? – Al3bed Jun 2 '11 at 9:27
all you need to do is applying bidi algorithm before getting characters code, i've edited answer :) – everplays Jun 2 '11 at 10:24
I didn't success to install fribidi. utf8ToUnicode is a good function I think they need to add it into php 6 – Al3bed Jun 2 '11 at 23:00
feedback

Try this:

<?php
    $string = 'a';
    $expanded = iconv('UTF-8', 'UTF-32', $string);
    $arr = unpack('L*', $expanded);
    print_r($arr);
?>
link|improve this answer
what is the best using iconv or mb_convert_encoding? and what is the encoding of Arabic language - assumption that I already have UTF-8 content. – Al3bed Jun 2 '11 at 23:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.