mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Clarify strstr() description a little
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70080 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
fed7842a06
commit
117471d39b
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.160 $ -->
|
||||
<!-- $Revision: 1.161 $ -->
|
||||
<reference id="ref.strings">
|
||||
<title>String functions</title>
|
||||
<titleabbrev>Strings</titleabbrev>
|
||||
|
@ -3172,8 +3172,9 @@ $var = strspn("42 is the answer, what is the question ...", "1234567890");
|
|||
<methodparam><type>string</type><parameter>needle</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Returns all of <parameter>haystack</parameter> from the first
|
||||
occurrence of <parameter>needle</parameter> to the end.
|
||||
Returns part of <parameter>haystack</parameter> string from the
|
||||
first occurrence of <parameter>needle</parameter> to the end of
|
||||
<parameter>haystack</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
If <parameter>needle</parameter> is not found, returns &false;.
|
||||
|
|
Loading…
Reference in a new issue