Jump to content

finding the binary/hex? code of a utf character


asmith

Recommended Posts

i wish so. The file is written by someone else. 

 

my problem is, I have an array. It has like 300 values.  all values are like "عنوان" (html numeric char)

 

the array values are a html form select options.    like : 

 

foreach ($array as $value) 
{ 
echo <option value="$value" $selected>$value</option>
}

 

the thing is , in the foreach i'm putting  :

 

If ($value == $row[option]) { $selected = "selected"}

 

now my $row[option] is  "عنوان" . but the option that must match is  "&#1593;&#1606;&#1608;&#1575;&#1606;" .

 

So i need to convert "عنوان" to html numeric char first , then do the IF statement.

 

All i need is te function :/

 

mb_decode_numericentity and encode one do not work in my php version apparently :/

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.