mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
Small changes to the usort functions. "See also:" was re-organized on all three of them and a note about example user-defined functions was added to uasort.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@29907 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
7ccd9f4d98
commit
e2cc8652db
1 changed files with 21 additions and 7 deletions
|
@ -2189,6 +2189,19 @@ fruits[3] = orange
|
|||
the actual element order is significant. The comparison function
|
||||
is user-defined.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
Please see <function>usort</function> and
|
||||
<function>uksort</function> for examples of user-defined
|
||||
comparison functions.
|
||||
</para>
|
||||
</note>
|
||||
<para>
|
||||
See also: <function>usort</function>, <function>uksort</function>,
|
||||
<function>sort</function>, <function>asort</function>,
|
||||
<function>arsort</function>, <function>ksort</function>
|
||||
and <function>rsort</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
@ -2244,10 +2257,10 @@ while (list ($key, $value) = each ($a)) {
|
|||
</informalexample>
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>arsort</function>,
|
||||
<function>asort</function>, <function>uasort</function>,
|
||||
<function>ksort</function>, <function>rsort</function>, and
|
||||
<function>sort</function>.
|
||||
See also: <function>usort</function>, <function>uasort</function>,
|
||||
<function>sort</function>, <function>asort</function>,
|
||||
<function>arsort</function>, <function>ksort</function> and
|
||||
<function>rsort</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
@ -2327,9 +2340,10 @@ while (list ($key, $value) = each ($a)) {
|
|||
</warning>
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>arsort</function>,
|
||||
<function>asort</function>, <function>ksort</function>,
|
||||
<function>rsort</function>, and <function>sort</function>.
|
||||
See also: <function>uasort</function>, <function>uksort</function>,
|
||||
<function>sort</function>, <function>asort</function>,
|
||||
<function>arsort</function>, <function>ksort</function> and
|
||||
<function>rsort</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
|
Loading…
Reference in a new issue