[Solved] PHP 7: Unicode escape syntax doesn’t work on single quotes


The point of single-quoted strings is that they don’t support escape characters.

The documentation says this very clearly:

All other instances of backslash will be treated as a literal backslash: this means that the other escape sequences you might be used to, such as \r or \n, will be output literally as specified rather than having any special meaning.

7

solved PHP 7: Unicode escape syntax doesn’t work on single quotes