|
|
Tutorials » Php »
|
Topic |
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.
|
|
A Note |
Learn PHP programming language tutorial with simple and neat example. Hope you enjoy this free tutorial.
Do give us your valuable feedback and suggestions on this online tutorial. This is a Copyright Content.
|
|
|
|