• PHP Video Tutorials

PHP - Function Hebrevc



Syntax

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

Definition and Usage

It is used to convert logical Hebrew text to visual text with newline conversion

Return Values

It returns the visual string.

Parameters

Sr.No Parameters & Description
1

hebrew_text

It contains the information about a hebrew string input

2

max_chars_per_line

It contains the information about max number of characters per line that will be returned

Example

Try out the following example

<?php
   echo hebrevc("á çùåï äúùñâ\ná çùåï äúùñâ");
?>

This will produce following result − −

âñùúä ïåùç á
âñùúä ïåùç á
php_function_reference.htm
Advertisements