• PHP Video Tutorials

PHP - Function Hebrev



Syntax

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

Definition and Usage

It is used to convert logical Hebrew text to visual text

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
   print_r (get_html_translation_table(HTML_SPECIALCHARS));
?>

This will produce following result − −

Array
(
   ["] => "
   [&] => &
   [<] => <
   [>] => >
)
php_function_reference.htm
Advertisements