- make XML comformant

- added missing encoding declaration to files where are characters outside of ASCII
- corrected some small typos (unterminated entity reference, &lt; instead of <)


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@41005 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jirka Kosek 2001-02-08 10:27:59 +00:00
parent 48bc5a490a
commit c7affe03ce
5 changed files with 9 additions and 6 deletions

View file

@ -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>

View file

@ -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
(?&lt;=\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)
^(?>.*)(?&lt;=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+|&lt;\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 &lt;>, 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+)|&lt;\d+>)*[!?]
sequences of non-digits cannot be broken, and failure hap-
pens quickly.

View file

@ -1,3 +1,4 @@
<?xml encoding="iso-8859-1"?>
<reference id="ref.strings">
<title>String functions</title>
<titleabbrev>Strings</titleabbrev>

View file

@ -1,3 +1,4 @@
<?xml encoding="iso-8859-1"?>
<reference id="ref.xslt">
<title>XSLT functions</title>
<titleabbrev>XSLT</titleabbrev>

View file

@ -1,3 +1,4 @@
<?xml encoding="iso-8859-1"?>
<chapter id="language.variables">
<title>Variables</title>