downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

hebrevc> <get_html_translation_table
[edit] Last updated: Fri, 17 May 2013

view this page in

hebrev

(PHP 4, PHP 5)

hebrevConvertit un texte logique hébreux en texte visuel

Description

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

Convertit un texte logique hébreux en texte visuel.

La fonction tente d'éviter la césure des mots.

Liste de paramètres

hebrew_text

Une chaîne d'entrée en hébreux.

max_chars_per_line

Le paramètre optionnel max_chars_per_line indique le nombre maximum de caractères par ligne dans le résultat.

Valeurs de retour

Retourne la chaîne visuelle.

Voir aussi

  • hebrevc() - Convertit un texte logique hébreux en texte visuel, avec retours à la ligne



hebrevc> <get_html_translation_table
[edit] Last updated: Fri, 17 May 2013
 
add a note add a note User Contributed Notes hebrev - [5 notes]
up
2
tinko
8 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
1
zak at php dot net
12 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).
up
0
udioron at geeee mmmaaaaiiillll dotcom
4 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
0
socket at linuxloony dot net
9 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
-3
socket at quotez dot org
5 years ago
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.

 
show source | credits | sitemap | contact | advertising | mirror sites