PHP 8.3.4 Released!

hebrevc

(PHP 4, PHP 5, PHP 7)

hebrevcConvert logical Hebrew text to visual text with newline conversion

Warning

This function has been DEPRECATED as of PHP 7.4.0, and REMOVED as of PHP 8.0.0. Relying on this function is highly discouraged.

Description

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

This function is similar to hebrev() with the difference that it converts newlines (\n) to "<br>\n".

The function tries to avoid breaking words.

Parameters

hebrew_text

A Hebrew input string.

max_chars_per_line

This optional parameter indicates maximum number of characters per line that will be returned.

Return Values

Returns the visual string.

See Also

  • hebrev() - Convert logical Hebrew text to visual text

add a note

User Contributed Notes 2 notes

up
-20
yfurman at yahoo dot com
22 years ago
Beware of English use!
I was working on a little project, and used hebrevc to reverse Hebrew in a loop. The hebrevc function got a variable as an argument. Sometimes the variable was pure English and sometimes it was hebrew.
Suddenly I found out that the English too was cut with BR tags, which made it look funny - the last line was the first.

If you're going to use that function in mixed text, don't forget to check the language before using the function.

Yael
up
-22
Oded
14 years ago
If you want to use hebrevc with english,
just use strrev.
To Top