倉庫指標
- 星標
- (596 顆星)
- PR 合併指標
- (平均合併 99天 23小時) (30 天內合併 90 個 PR)
描述
ref: https://www.php.net/manual/en/language.types.string.php
The description under “Single quoted” says, “To specify a literal backslash, double it (\);” however, in the example we see...
// Outputs: You deleted C:\*.*?
echo 'You deleted C:\*.*?';
... so it seems it is not necessary to double the backslash. Should the instruction for doubling a literal backslash be removed from this section? Alternately, it could be clarified to state that doubling the backslash is optional, and either a single or double backslash will result in a single backslash.
In the “Double quoted” section we see, “As in single quoted strings, escaping any other character will result in the backslash being printed too.” This statement references a table of escaped characters that applies to double quoted strings, but not single quoted strings. I would cut the phrase “As in single quoted strings...” to avoid leading people to think that the table has anything to do with single quoted strings. It's clear enough to say, “Escaping any other character will result in the backslash being printed.”