PHP hebrevc Function

What is hebrevc Function ?

Explanation

In PHP this function is used to convert logical Hebrew text to visual text with newline conversion.

Syntax:


hebrevc(string,maxcharline)

In the above syntax "string" specifies the hebrew text, "maxcharline" specifies the maximum characters perline.

Example :


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

âñùúä ïåùç á
âñùúä ïåùç á

In the above PHP example the hebrew string is displayed in two lines as the "%n" line character is taken.

PHP Topics


Ask Questions

Ask Question