strstr: update see also list

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65786 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-12-20 22:38:53 +00:00
parent 27f070da7a
commit 59608c5705

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.143 $ -->
<!-- $Revision: 1.144 $ -->
<reference id="ref.strings">
<title>String functions</title>
<titleabbrev>Strings</titleabbrev>
@ -3374,14 +3374,12 @@ $var = strspn("42 is the answer, what is the question ...", "1234567890");
If <parameter>needle</parameter> is not a string, it is converted
to an integer and applied as the ordinal value of a character.
</para>
<para>
<note>
<para>
Note that this function is case-sensitive. For
case-insensitive searches, use <function>stristr</function>.
</para>
</note>
</para>
<note>
<para>
This function is case-sensitive. For case-insensitive searches, use
<function>stristr</function>.
</para>
</note>
<para>
<example>
<title><function>strstr</function> example</title>
@ -3395,9 +3393,10 @@ print $domain; // prints @designmultimedia.com
</example>
</para>
<para>
See also <function>strchr</function>, <function>stristr</function>,
<function>strrchr</function>, <function>substr</function>, and
<function>ereg</function>.
See also <function>ereg</function>, <function>preg_match</function>,
<function>strchr</function>, <function>stristr</function>,
<function>strpos</function>, <function>strrchr</function>, and
<function>substr</function>.
</para>
</refsect1>
</refentry>