English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

PHP Basic Tutorial

PHP Advanced Tutorial

PHP & MySQL

PHP Reference Manual

PHP hebrev() Function Usage and Example

PHP String Character String Functions Manual

hebrev() function is used to convert logical order Hebrew (logical-Hebrew) to visual order Hebrew (visual-Hebrew)

Syntax

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

Definition and Usage

Used to convert logical Hebrew text to visible text

Return Value

It returns the visible string.

Parameter

Serial NumberParameters and Description
1

hebrew_text

It contains information about the Hebrew string input

2

max_chars_per_line

It contains information about the maximum number of characters per line returned

Online Example

Try the following example

<?php
    echo hebrev("á çùåï äúùñâ");
?>
Test and see‹/›

Output Result-

á çùåï äúùñâ

PHP String Character String Functions Manual