Update with minor grammar fixes

This commit is contained in:
Myo T Kyaw
2016-09-16 18:40:43 -07:00
parent 5118537e23
commit 14e80864d5
14 changed files with 19 additions and 19 deletions

View File

@@ -18,7 +18,7 @@ for a brief, practical summary.
### UTF-8 at the PHP level
The basic string operations, like concatenating two strings and assigning strings to variables, don't need anything
special for UTF-8. However most string functions, like `strpos()` and `strlen()`, do need special consideration. These
special for UTF-8. However, most string functions, like `strpos()` and `strlen()`, do need special consideration. These
functions often have an `mb_*` counterpart: for example, `mb_strpos()` and `mb_strlen()`. These `mb_*` strings are made
available to you via the [Multibyte String Extension], and are specifically designed to operate on Unicode strings.