mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
- make XML comformant
- added missing encoding declaration to files where are characters outside of ASCII - corrected some small typos (unterminated entity reference, < instead of <) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@41005 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
48bc5a490a
commit
c7affe03ce
5 changed files with 9 additions and 6 deletions
|
@ -30,7 +30,7 @@
|
|||
</simpara>
|
||||
<simpara>
|
||||
More information about mnoGoSearch can be found at<ulink
|
||||
url="&url.mnogo">&url.mnogo;</ulink>.
|
||||
url="&url.mnogo;">&url.mnogo;</ulink>.
|
||||
</simpara>
|
||||
</partintro>
|
||||
|
||||
|
|
|
@ -1723,7 +1723,7 @@ ASSERTIONS
|
|||
matches an occurrence of "baz" that is preceded by "bar"
|
||||
which in turn is not preceded by "foo", while
|
||||
|
||||
(?<=\d{3}(?!999)...)foo
|
||||
(?<=\d{3}(?!999)...)foo
|
||||
|
||||
is another pattern which matches "foo" preceded by three
|
||||
digits and any three characters that are not "999".
|
||||
|
@ -1810,7 +1810,7 @@ ONCE-ONLY SUBPATTERNS
|
|||
for "a" covers the entire string, from right to left, so we
|
||||
are no better off. However, if the pattern is written as
|
||||
|
||||
^(?>.*)(?<=abcd)
|
||||
^(?>.*)(?<=abcd)
|
||||
|
||||
then there can be no backtracking for the .* item; it can
|
||||
match only the entire string. The subsequent lookbehind
|
||||
|
@ -1825,10 +1825,10 @@ ONCE-ONLY SUBPATTERNS
|
|||
avoid some failing matches taking a very long time indeed.
|
||||
The pattern
|
||||
|
||||
(\D+|<\d+>)*[!?]
|
||||
(\D+|<\d+>)*[!?]
|
||||
|
||||
matches an unlimited number of substrings that either con-
|
||||
sist of non-digits, or digits enclosed in <>, followed by
|
||||
sist of non-digits, or digits enclosed in <>, followed by
|
||||
either ! or ?. When it matches, it runs quickly. However, if
|
||||
it is applied to
|
||||
|
||||
|
@ -1844,7 +1844,7 @@ ONCE-ONLY SUBPATTERNS
|
|||
match, and fail early if it is not present in the string.)
|
||||
If the pattern is changed to
|
||||
|
||||
((?>\D+)|<\d+>)*[!?]
|
||||
((?>\D+)|<\d+>)*[!?]
|
||||
|
||||
sequences of non-digits cannot be broken, and failure hap-
|
||||
pens quickly.
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml encoding="iso-8859-1"?>
|
||||
<reference id="ref.strings">
|
||||
<title>String functions</title>
|
||||
<titleabbrev>Strings</titleabbrev>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml encoding="iso-8859-1"?>
|
||||
<reference id="ref.xslt">
|
||||
<title>XSLT functions</title>
|
||||
<titleabbrev>XSLT</titleabbrev>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml encoding="iso-8859-1"?>
|
||||
<chapter id="language.variables">
|
||||
<title>Variables</title>
|
||||
|
||||
|
|
Loading…
Reference in a new issue