©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 4, PHP 5)
hebrev — 将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)
$hebrew_text
[, int $max_chars_per_line
= 0
] )将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)
函数将会尝试避免破坏单词。
hebrew_text
逻辑顺序希伯来文字符串。
max_chars_per_line
可选参数,表示每行可返回的最多字符数。
返回视觉顺序字符串。
[#1] udioron at geeee mmmaaaaiiillll dotcom [2009-01-01 17:14:37]
This might work for unicode strings:
<?php
$s = iconv("ISO-8859-8", "UTF-8", hebrev(iconv("UTF-8", "ISO-8859-8", $s)));
?>
Udi
[#2] tinko [2004-12-14 03:46:17]
From my experience in using hebrev text in HTML, I prefer using
<html dir="rtl" lang="he">
over mentioned PHP functions. It works perfectly with IE 6 ... needs some tweaking in Mozilla though.
I found this site http://tlt.its.psu.edu/suggestions/international/web/tips/align.html useful.
[#3] socket at linuxloony dot net [2004-04-03 06:17:06]
The hebrev function changes the string order to RTL.
Use fribidi_log2vis insted if you need LTR text direction
$text = fribidi_log2vis($text,FRIBIDI_LTR, FRIBIDI_CHARSET_CP1255)
[#4] zak at php dot net [2001-01-09 03:39:05]
hebrev() changes the flow of any Hebrew characters in a string from right-to-left to left-to-right.
It only affects characters within the range of ASCII 224-251 (except for punctuation).