PHP 8.4.0 RC4 available for testing

hebrev

(PHP 4, PHP 5, PHP 7, PHP 8)

hebrev将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)

说明

hebrev(string $string, int $max_chars_per_line = 0): string

将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)

函数将会尝试避免破坏单词。

参数

string

逻辑顺序希伯来文字符串。

max_chars_per_line

可选参数,表示每行可返回的最多字符数。

返回值

返回视觉顺序字符串。

参见

  • hebrevc() - 将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew),并且转换换行符

添加备注

用户贡献的备注 1 note

up
6
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.
To Top