PHP 8.4.0 RC3 available for testing

hebrev

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

hebrevConvierte texto hebreo lógico a texto visual

Descripción

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

Convierte el texto hebreo lógico a texto visual.

La función trata de evitar el corte de las palabras.

Parámetros

hebrew_text

Una cadena Hebrea de entrada.

max_chars_per_line

Este parámetro opcional indica el número máximo de caracteres por línea que será devuelta.

Valores devueltos

Devuelve la cadena visual.

Ver también

  • hebrevc() - Convertir texto de hebreo lógico a texto visual con conversión de línea nueva

add a note

User Contributed Notes 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