P.S. : I'm using PHP 7.2.2 on my machine that runs on Windows 10 Home Single Language edition. I'm using PHP from the installed XAMPP v3.2.2
Consider all my doubts as regarding to PHP 7 only.
Please have a look at the following text from the Strings page of PHP Manual :
A string is series of characters, where a character is the same as a byte. This means that PHP only supports a 256-character set, and hence does not offer native Unicode support.
The above text has raised so many questions in my mind as below :
- What does actually mean by "256-character set" in the context of PHP here? Which 256 characters are involved in this so called 256-character set? What is the official name of this "256-character set" in PHP context?
- What does actually mean by "Native Unicode Support"?
- I heard that abandoned PHP 6 release was about to incorporate "Native Unicode Support" but somehow it never got released and finally abandoned. So, I expected PHP 7 will incorporate "Native Unicode Support" but the manual is saying it still doesn't supported as of PHP 7? Why so?
- How PHP overcame this drawback in PHP 7 releases?
- Can the website be created in PHP which supports multiple languages, especially Indian Languages as PHP is not having "Native Unicode Support"?