mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
Fix typo retuns to returns
This commit is contained in:
@@ -4408,7 +4408,7 @@ PHP_FUNCTION(array_flip)
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto array array_change_key_case(array input [, int case=CASE_LOWER])
|
||||
Retuns an array with all string keys lowercased [or uppercased] */
|
||||
Returns an array with all string keys lowercased [or uppercased] */
|
||||
PHP_FUNCTION(array_change_key_case)
|
||||
{
|
||||
zval *array, *entry;
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - Pass different data t
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ Test array_change_key_case() function : usage variations - Pass different data t
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - different data types
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - different int values
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - position of internal
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - multidimensional arra
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - referenced variables
|
||||
--FILE--
|
||||
<?php
|
||||
/* Prototype : array array_change_key_case(array $input [, int $case])
|
||||
* Description: Retuns an array with all string keys lowercased [or uppercased]
|
||||
* Description: Returns an array with all string keys lowercased [or uppercased]
|
||||
* Source code: ext/standard/array.c
|
||||
*/
|
||||
|
||||
|
||||
@@ -528,7 +528,7 @@ function delete_links($file_path,
|
||||
corresponding next 13 values of the same stat for equality
|
||||
$stat = stat array
|
||||
|
||||
Retuns: true when all of them match, false otherwise
|
||||
Returns: true when all of them match, false otherwise
|
||||
*/
|
||||
function compare_self_stat( array $stat )
|
||||
{
|
||||
|
||||
@@ -96,7 +96,7 @@ $scalars = array(
|
||||
$heredoc_empty_string
|
||||
);
|
||||
/* loop to check that strval() recognizes different
|
||||
scalar values and retuns the string conversion of same */
|
||||
scalar values and returns the string conversion of same */
|
||||
$loop_counter = 1;
|
||||
foreach ($scalars as $scalar ) {
|
||||
echo "-- Iteration $loop_counter --\n"; $loop_counter++;
|
||||
|
||||
Reference in New Issue
Block a user