From: Marcus Boerger Date: Mon, 20 Feb 2006 22:21:24 +0000 (+0000) Subject: - WS X-Git-Tag: RELEASE_1_2~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45dd9a10b8965a96b41d940f0e9a502b8d650117;p=php - WS --- diff --git a/ext/spl/spl.php b/ext/spl/spl.php index 8ad3d197d2..70c3f2f480 100755 --- a/ext/spl/spl.php +++ b/ext/spl/spl.php @@ -634,7 +634,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable /** Sort the entries by key. */ function ksort(); - + /** Sort the entries by values using user defined function. */ function uasort(mixed cmp_function); @@ -642,7 +642,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable /** Sort the entries by key using user defined function. */ function uksort(mixed cmp_function); - + /** Sort the entries by values using "natural order" algorithm. */ function natsort(); @@ -650,7 +650,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable /** Sort the entries by values using case insensitive "natural order" algorithm. */ function natcasesort(); - + /** * @param $array new array or object */ @@ -756,7 +756,7 @@ class ArrayIterator implements SeekableIterator, ArrayAccess, Countable /** Sort the entries by key. */ function ksort(); - + /** Sort the entries by values using user defined function. */ function uasort(mixed cmp_function); @@ -764,7 +764,7 @@ class ArrayIterator implements SeekableIterator, ArrayAccess, Countable /** Sort the entries by key using user defined function. */ function uksort(mixed cmp_function); - + /** Sort the entries by values using "natural order" algorithm. */ function natsort(); @@ -772,7 +772,7 @@ class ArrayIterator implements SeekableIterator, ArrayAccess, Countable /** Sort the entries by values using case insensitive "natural order" algorithm. */ function natcasesort(); - + /** @param $index offset to inspect * @return whetehr offset $index esists */