Home
last modified time | relevance | path

Searched refs:duplicate (Results 1 – 25 of 62) sorted by relevance

123

/PHP-5.5/ext/standard/tests/array/
H A Darray_unique_variation5.phpt2 Test array_unique() function : usage variations - array with duplicate keys
6 * Description: Removes duplicate values from array
12 * array having duplicate keys as values.
15 echo "*** Testing array_unique() : array with duplicate keys for \$input argument ***\n";
17 // initialize the array having duplicate keys
24 *** Testing array_unique() : array with duplicate keys for $input argument ***
H A Darray_sum_variation4.phpt2 Test array_sum() function : usage variations - array with duplicate values
11 * Checking array_sum() with integer and float array containing duplicate values
14 echo "*** Testing array_sum() : array with duplicate values ***\n";
16 // integer array with duplicate values
21 // float array with duplicate values
29 *** Testing array_sum() : array with duplicate values ***
H A Darray_merge_recursive_variation6.phpt2 Test array_merge_recursive() function : usage variations - array with duplicate keys
12 * array having duplicate keys.
15 echo "*** Testing array_merge_recursive() : array with duplicate keys for \$arr1 argument ***\n";
17 /* initialize the array having duplicate keys */
19 …array( 1 => "one", 2 => "two", 2 => array(1, 2), 3 => "three", 1 => array("duplicate", 'strings'));
37 *** Testing array_merge_recursive() : array with duplicate keys for $arr1 argument ***
43 string(9) "duplicate"
68 string(9) "duplicate"
H A Darray_diff_variation6.phpt2 Test array_diff() function : usage variations - array containing duplicate keys and values
14 * 2. duplicate values
15 * 3. duplicate key names
20 $array_index = array('a', 'b', 'c', 0 => 'd', 'b'); //duplicate key (0), duplicate value (b)
H A Darray_diff_assoc_variation8.phpt2 Test array_diff_assoc() function : usage variations - array containing duplicate keys and values
15 * 2. duplicate values
16 * 3. duplicate key names
21 $array_index = array('a', 'b', 'c', 0 => 'd', 'b'); //duplicate key (0), duplicate value (b)
H A Dusort_variation10.phpt2 Test usort() function : usage variations - duplicate keys and values
11 * Pass an array with duplicate keys and values to usort() to test behaviour
28 // Array with duplicate string and integer keys and values
33 echo "\n-- Array with duplicate keys --\n";
48 -- Array with duplicate keys --
H A Duasort_variation11.phpt11 * string, integer, default & duplicate keys
36 // Array with duplicate string and integer keys
38 echo "-- Array with duplicate keys --\n";
52 -- Array with duplicate keys --
H A Duasort_basic2.phpt2 Test uasort() function : basic functionality - duplicate values
10 echo "*** Testing uasort() : basic functionality with duplicate values ***\n";
53 *** Testing uasort() : basic functionality with duplicate values ***
H A Darray_chunk_variation6.phpt14 * 2. associative array with duplicate keys
29 // associative array with duplicate keys
H A Darray_unique_basic.phpt6 * Description: Removes duplicate values from array
H A Darray_unique_variation7.phpt6 * Description: Removes duplicate values from array
H A Darray_unique_variation6.phpt6 * Description: Removes duplicate values from array
H A Dnatcasesort_variation11.phpt94 // duplicate values
95 /*13*/ 'duplicate' => array(
H A Darray_merge_variation5.phpt12 * $arr2 contains a duplicate element to $arr1.
H A Darray_merge_variation6.phpt12 * $arr2 has a duplicate key to $arr1
H A Darray_unique_error.phpt6 * Description: Removes duplicate values from array
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c29 char *duplicate; in fpm_php_zend_ini_alter_master() local
35 duplicate = strdup(new_value); in fpm_php_zend_ini_alter_master()
38 || ini_entry->on_modify(ini_entry, duplicate, new_value_length, in fpm_php_zend_ini_alter_master()
40 ini_entry->value = duplicate; in fpm_php_zend_ini_alter_master()
44 free(duplicate); in fpm_php_zend_ini_alter_master()
/PHP-5.5/Zend/
H A Dzend_API.h405 ZEND_API int add_index_string(zval *arg, ulong idx, const char *str, int duplicate);
414 ZEND_API int add_next_index_string(zval *arg, const char *str, int duplicate);
415 ZEND_API int add_next_index_stringl(zval *arg, const char *str, uint length, int duplicate);
574 #define ZVAL_STRING(z, s, duplicate) do { \ argument
578 Z_STRVAL_P(__z) = (duplicate?estrndup(__s, Z_STRLEN_P(__z)):(char*)__s);\
582 #define ZVAL_STRINGL(z, s, l, duplicate) do { \ argument
586 Z_STRVAL_P(__z) = (duplicate?estrndup(__s, __l):(char*)__s);\
622 #define RETVAL_STRING(s, duplicate) ZVAL_STRING(return_value, s, duplicate) argument
623 #define RETVAL_STRINGL(s, l, duplicate) ZVAL_STRINGL(return_value, s, l, duplicate) argument
634 #define RETURN_STRING(s, duplicate) { RETVAL_STRING(s, duplicate); return; } argument
[all …]
H A Dzend_ini.c258 char *duplicate; in zend_alter_ini_entry_ex() local
291 duplicate = estrndup(new_value, new_value_length); in zend_alter_ini_entry_ex()
294 …|| ini_entry->on_modify(ini_entry, duplicate, new_value_length, ini_entry->mh_arg1, ini_entry->mh_… in zend_alter_ini_entry_ex()
298 ini_entry->value = duplicate; in zend_alter_ini_entry_ex()
301 efree(duplicate); in zend_alter_ini_entry_ex()
/PHP-5.5/tests/classes/
H A Dconstants_error_001.phpt2 Error case: duplicate class constant definition
/PHP-5.5/ext/phar/tests/
H A Dbug71391.phpt7 // duplicate since the tar will change
/PHP-5.5/Zend/tests/
H A Dbug54013.phpt2 Bug #54013 (ReflectionParam for duplicate parameter contains garbage)
/PHP-5.5/ext/bcmath/libbcmath/
H A DREADME8 These routines do not duplicate functionality of the GNU gmp
/PHP-5.5/ext/standard/tests/http/
H A Dbug48929.phpt2 Bug #48929 (duplicate \r\n sent after last header line)
/PHP-5.5/ext/zlib/tests/
H A Dbug60761.phpt14 // try to duplicate the original bug by running this as a CGI

Completed in 46 milliseconds

123