|
|
Tutorials » Php »
|
Topic |
What is hebrev Function?
|
|
Explanation |
|
In PHP this function is used to convert logical hebrew text to visual text.
Syntax:
hebrev(string,maxcharline)
In the above syntax "string" specifies the hebrew text, "maxcharline" specifies the maximum characters perline.
Example:
<?php
echo hebrev("á çùåï äúùñâ");
?>
Result:
âñùúä ïåùç á
In the above example for hebrev function the hebrew string is formatted from left to right.
|
|
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.
|
|
|
|