hebrev

(PHP 4, PHP 5)

hebrevПреобразует текст на иврите из логической кодировки в визуальную

Описание

string hebrev ( string $hebrew_text [, int $max_chars_per_line = 0 ] )

Преобразует текст на иврите из логической кодировки в визуальную.

Эта функция пытается избежать разрывов слов.

Список параметров

hebrew_text

Входная строка на иврите.

max_chars_per_line

Этот необязательный параметр указывает максимально возвращаемое число символов на строку.

Возвращаемые значения

Возвращает строку в визуальной кодировке.

Смотрите также

  • hebrevc() - Преобразует текст на иврите из логической кодировки в визуальную с преобразованием перевода строки

Коментарии

Автор:
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).
2001-01-09 05:39:05
http://php5.kiev.ua/manual/ru/function.hebrev.html
As of PHP 4.05 there's a problem in the handling of the characters '{}[]<>' compared to MSIE. Note that normal parenthesis '()' are OK.

For further information see http://www.php.net/bugs.php?id=11244 .
2001-06-01 19:35:37
http://php5.kiev.ua/manual/ru/function.hebrev.html
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)
2004-04-03 09:17:06
http://php5.kiev.ua/manual/ru/function.hebrev.html
Автор:
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.
2004-12-14 05:46:17
http://php5.kiev.ua/manual/ru/function.hebrev.html
In response to the user talking of "characters in the range of ASCII 224-251". These codes are not defined in ASCII. You are probably talking about one of the extensions to ASCII, probably ISO-8859-8
2006-12-04 14:34:31
http://php5.kiev.ua/manual/ru/function.hebrev.html
hebrev/hebrevc does not support unicode strings.

when using the GD lib and imagettftext() with hebrew text you must reverse the chars before sending it to the function.

so there is a need for hebrev/c with unicode support.
2008-04-29 15:58:19
http://php5.kiev.ua/manual/ru/function.hebrev.html
This might work for unicode strings:

<?php
$s 
iconv("ISO-8859-8""UTF-8"hebrev(iconv("UTF-8""ISO-8859-8"$s)));
?>

Udi
2009-01-01 19:14:37
http://php5.kiev.ua/manual/ru/function.hebrev.html
Автор:
udioron - exactly right. That reversed the string.
Thank you.
2009-04-04 06:25:57
http://php5.kiev.ua/manual/ru/function.hebrev.html

    Поддержать сайт на родительском проекте КГБ