PHP 8.4.0 RC4 available for testing

hebrev

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

hebrevConverte texto hebraico lógico para texto visual

Descrição

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

Converte texto hebraico lógico para texto visual.

A função tenta evitar quebra de palavras.

Parâmetros

string

Uma string de entrada em hebraico.

max_chars_per_line

Este parâmetro opcional indica o número máximo de caracteres por linha que serão retornados.

Valor Retornado

Retorna a string visual.

Veja Também

  • hebrevc() - Converte texto hebraico lógico para texto visual com conversão de novas linhas

adicione uma nota

Notas Enviadas por Usuários (em inglês) 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