hebrev

(PHP 4, PHP 5, PHP 7)

hebrev논리 히브리 텍스트를 표시 텍스트로 변환

설명

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

논리 히브리 텍스트를 표시 텍스트로 변환합니다.

이 함수는 단어 중간에서 줄바꿈을 하지 않기 위해 노력합니다.

인수

hebrew_text

히브리 입력 문자열.

max_chars_per_line

이 선택적인 인수는 한 줄에 들어가는 최대 문자수를 지정합니다.

반환값

표시 문자열을 반환합니다.

참고

  • hebrevc() - 줄바꿈을 포함하여 논리 히브리 텍스트를 표시 텍스트로 변환

add a note add a note

User Contributed Notes 4 notes

up
1
tinko
19 years ago
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.
up
-2
udioron at geeee mmmaaaaiiillll dotcom
15 years ago
This might work for unicode strings:

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

Udi
up
-5
socket at linuxloony dot net
20 years ago
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)
up
-9
zak at php dot net
23 years ago
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).
To Top