Home >Backend Development >PHP Problem >How to convert Hebrew text into visible text using php function
In the previous article, we learned about the method of encoding and decoding strings. If necessary, please see "Using php string functions to encode and decode strings". This time we will introduce to you the method of converting Hebrew text into visible text. You can refer to it if necessary.
Before starting the introduction of this article, let’s take a look at Hebrew.
Hebrew is the national language of the Jews and one of the oldest languages in the world. "Hebrew" means "one who crosses the river." It belongs to a branch of the Semitic family of Semitic languages. There are no vowels, only 22 consonants, and its characters are written from right to left. Many literary works and documents were written in Hebrew. Today they are preserved primarily in the Christian Bible, the Dead Sea Scrolls, and in numerous Talmudic codes and documents.
After we have the knowledge of Hebrew, let’s introduce it next.
In fact, there are two ways to convert Hebrew text into visible text. Let’s introduce the first one first.
Look at a small example.
<?php echo hebrev("á çùåï äúùñâ"); ?>
The result is
âñùúä ïåùç á
We look at this example and find that there is no difference between the result and the entered text, only the position has changed. So you can understand that the hebrev function can change the direction of text sorting.
Let us introduce this function in detail.
hebrev() function converts Hebrew text from right-to-left flow to left-to-right flow.
Let’s take a look at its syntax.
hebrev(希伯来文本,规定每行的最大字符数。如果可能,hebrev() 将避免把单词断开)
Now that the first method has been introduced, let’s look at the second method.
Little chestnut is here.
<?php echo hebrevc("á çùåï äúùñâ\ná çùåï äúùñâ"); ?>
The result is
âñùúä ïåùç á âñùúä ïåùç á
We can observe it and find that the difference between the result of this method and the previous one is that it breaks the line. Then let’s take a look at the function and find that there are A "\", this should be the reason for the text to wrap, but is it right? Let's see the answer. That's right, that's right.
hebrevc() function converts Hebrew text from right-to-left flow to left-to-right flow. Also, convert new lines (\n) to 0c6dc11e160d3b678d68754cc175188a.
It should be noted that:
hebrevc() and hebrev() can convert Hebrew logical text (Windows encoding) into Hebrew visible text. Hebrew visible text does not require special right-to-left character support, making it useful for displaying Hebrew text on the web.
That’s all. If you want to know anything else, you can click here. → →php video tutorial
The above is the detailed content of How to convert Hebrew text into visible text using php function. For more information, please follow other related articles on the PHP Chinese website!