Fixed references to examples / explanation "below" and "above" to actually link to the content.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336703 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Pieter Hordijk 2015-04-30 19:32:03 +00:00
parent 70c246e011
commit 61b8c6fb86

View file

@ -570,7 +570,7 @@
<para>
The <literal>\A</literal>, <literal>\Z</literal>, and
<literal>\z</literal> assertions differ from the traditional
circumflex and dollar (described below) in that they only
circumflex and dollar (described in <link linkend="regexp.reference.anchors">anchors</link> ) in that they only
ever match at the very start and end of the subject string,
whatever options are set. They are not affected by the
<link linkend="reference.pcre.pattern.modifiers">PCRE_MULTILINE</link> or
@ -1798,7 +1798,7 @@
An assertion is a test on the characters following or
preceding the current matching point that does not actually
consume any characters. The simple assertions coded as \b,
\B, \A, \Z, \z, ^ and $ are described above. More complicated
\B, \A, \Z, \z, ^ and $ are described in <link linkend="regexp.reference.escape">escape sequences</link>. More complicated
assertions are coded as subpatterns. There are two
kinds: those that <emphasis>look ahead</emphasis> of the current position in the
subject string, and those that <emphasis>look behind</emphasis> it.