/php-src/ext/reflection/tests/ |
H A D | ReflectionObject_isSubclassOf_basic.phpt | 44 - Using string argument: bool(false) 48 - Using string argument: bool(false) 52 - Using string argument: bool(false) 55 - Using string argument: bool(false) 59 - Using string argument: bool(false) 63 - Using string argument: bool(true) 67 - Using string argument: bool(false) 71 - Using string argument: bool(false) 74 - Using string argument: bool(false) 82 - Using string argument: bool(true) [all …]
|
H A D | ReflectionClass_isSubclassOf_basic.phpt | 30 - Using object argument: bool(false) 31 - Using string argument: bool(false) 33 - Using object argument: bool(false) 34 - Using string argument: bool(false) 36 - Using object argument: bool(false) 37 - Using string argument: bool(false) 39 - Using object argument: bool(false) 40 - Using string argument: bool(false) 42 - Using object argument: bool(false) 45 - Using object argument: bool(true) [all …]
|
H A D | ReflectionClass_implementsInterface_001.phpt | 79 - Using object argument: bool(true) 80 - Using string argument: bool(true) 82 - Using object argument: bool(false) 83 - Using string argument: bool(false) 94 - Using object argument: bool(true) 95 - Using string argument: bool(true) 109 - Using object argument: bool(true) 110 - Using string argument: bool(true) 112 - Using object argument: bool(true) 113 - Using string argument: bool(true) [all …]
|
H A D | ReflectionMethod_constructor_error1.phpt | 17 echo "\nWrong type of argument (bool):\n"; 23 echo "\nWrong type of argument (int):\n"; 29 echo "\nWrong type of argument (bool, string):\n"; 35 echo "\nWrong type of argument (string, bool):\n"; 67 Wrong type of argument (bool): 69 Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMe… 74 Wrong type of argument (int): 76 Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMe… 81 Wrong type of argument (bool, string): 86 Wrong type of argument (string, bool): [all …]
|
/php-src/ext/standard/tests/strings/ |
H A D | sprintf_basic1.phpt | 12 $arg1 = "arg1 argument"; 13 $arg2 = "arg2 argument"; 14 $arg3 = "arg3 argument"; 33 string(13) "arg1 argument" 34 string(27) "arg1 argument arg2 argument" 35 string(41) "arg1 argument arg2 argument arg3 argument"
|
H A D | printf_basic1.phpt | 12 $arg1 = "arg1 argument"; 13 $arg2 = "arg2 argument"; 14 $arg3 = "arg3 argument"; 46 arg1 argument 50 arg1 argument arg2 argument 54 arg1 argument arg2 argument arg3 argument
|
H A D | bug40754.phpt | 83 substr_count(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 84 substr_compare(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 85 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 86 substr_count(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 87 substr_count(): Argument #4 ($length) must be contained in argument #1 ($haystack) 88 strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 89 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 90 strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 91 strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 92 strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
/php-src/ext/standard/tests/array/ |
H A D | array_change_key_case_variation4.phpt | 23 -- $sort argument is -5 -- 33 -- $sort argument is -4 -- 43 -- $sort argument is -3 -- 53 -- $sort argument is -2 -- 63 -- $sort argument is -1 -- 73 -- $sort argument is 0 -- 83 -- $sort argument is 1 -- 93 -- $sort argument is 2 -- 103 -- $sort argument is 3 -- 113 -- $sort argument is 4 -- [all …]
|
H A D | array_merge_recursive_variation1.phpt | 2 Test array_merge_recursive() function : usage variations - unexpected values for $arr1 argument 6 * Passing non array values to 'arr1' argument of array_merge_recursive() and see 10 echo "*** Testing array_merge_recursive() : Passing non array values to \$arr1 argument ***\n"; 32 // unexpected values to be passed to $arr1 argument 80 // initialise the second argument 88 // with default argument 89 echo "\n-- With default argument --"; 113 *** Testing array_merge_recursive() : Passing non array values to $arr1 argument *** 116 -- With default argument --array_merge_recursive(): Argument #1 must be of type array, int given 120 -- With default argument --array_merge_recursive(): Argument #1 must be of type array, int given [all …]
|
H A D | array_pad_variation7.phpt | 2 Test array_pad() function : usage variations - two dimensional array for 'input' argument 6 * Passing two dimensional array to $input argument and testing whether 11 echo "*** Testing array_pad() : Passing 2-D array to \$input argument ***\n"; 25 echo "-- Entire 2-d array for \$input argument --\n"; 30 echo "-- Sub array for \$input argument --\n"; 37 *** Testing array_pad() : Passing 2-D array to $input argument *** 38 -- Entire 2-d array for $input argument -- 97 -- Sub array for $input argument --
|
/php-src/ext/opcache/tests/ |
H A D | invalid_array_key_type.phpt | 9 $argument = new stdClass; 10 $definitions[$argument] = 1; 11 $definitions[$argument] += 1; 12 $argument = []; 13 $definitions[$argument] = 1; 14 $definitions[$argument] += 1;
|
/php-src/ext/date/tests/ |
H A D | gmmktime_variation7.phpt | 14 echo "\n-- Testing gmmktime() function with one optional argument --\n"; 17 echo "\n-- Testing gmmktime() function with two optional argument --\n"; 20 echo "\n-- Testing gmmktime() function with three optional argument --\n"; 23 echo "\n-- Testing gmmktime() function with four optional argument --\n"; 26 echo "\n-- Testing gmmktime() function with five optional argument --\n"; 33 -- Testing gmmktime() function with one optional argument -- 36 -- Testing gmmktime() function with two optional argument -- 39 -- Testing gmmktime() function with three optional argument -- 42 -- Testing gmmktime() function with four optional argument -- 45 -- Testing gmmktime() function with five optional argument --
|
/php-src/ext/iconv/tests/ |
H A D | iconv_strpos_variation5.phpt | 2 Test iconv_strpos() function : usage variations - Pass different integers as $offset argument 10 * Test how iconv_strpos() behaves when passed different integers as $offset argument 26 * Loop through integers as multiples of ten for $offset argument 52 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 54 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 88 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 90 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 94 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 96 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 100 iconv_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
/php-src/ext/mbstring/tests/ |
H A D | mb_stripos_variation5_Bug45923.phpt | 2 Test mb_stripos() function : usage variations - Pass different integers as $offset argument 8 * Test how mb_stripos() behaves when passed different integers as $offset argument 24 * Loop through integers as multiples of ten for $offset argument 50 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 52 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 86 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 88 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 92 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 94 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 98 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
H A D | mb_strpos_variation5.phpt | 2 Test mb_strpos() function : usage variations - Pass different integers as $offset argument 8 * Test how mb_strpos() behaves when passed different integers as $offset argument 24 * Loop through integers as multiples of ten for $offset argument 50 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 52 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 86 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 88 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 92 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 94 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 98 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
H A D | bug45923.phpt | 47 strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 55 strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 70 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 78 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 93 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 101 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 116 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 139 strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 147 strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 185 strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
H A D | mb_strripos_variation5_Bug45923.phpt | 2 Test mb_strripos() function : usage variations - Pass different integers as $offset argument 8 * Test how mb_strripos() behaves when passed different integers as $offset argument 24 * Loop through integers as multiples of ten for $offset argument 75 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 77 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 81 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 83 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 87 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 89 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 93 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
H A D | mb_stripos_invalid_offset.phpt | 84 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 85 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 86 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 87 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 88 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 89 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 90 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 91 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 92 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 93 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
H A D | mb_strpos_invalid_offset.phpt | 84 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 85 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 86 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 87 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 88 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 89 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 90 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 91 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 92 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 93 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
H A D | mb_strpos_offset_errors.phpt | 51 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 52 mb_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 53 mb_strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 54 mb_strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 55 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 56 mb_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 57 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 58 mb_strripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
/php-src/ext/standard/tests/general_functions/ |
H A D | call_user_func_array_variation_001.phpt | 14 echo "------ Calling by_val() with unreferenced argument ------\n"; 19 echo "------ Calling by_ref() with unreferenced argument ------\n"; 24 echo "------ Calling by_val() with referenced argument ------\n"; 30 echo "------ Calling by_ref() with referenced argument ------\n"; 38 ------ Calling by_val() with unreferenced argument ------ 43 ------ Calling by_ref() with unreferenced argument ------ 50 ------ Calling by_val() with referenced argument ------ 55 ------ Calling by_ref() with referenced argument ------
|
/php-src/Zend/tests/constexpr/ |
H A D | new_positional_after_named.phpt | 2 Positional argument after named argument in new arguments 10 Fatal error: Cannot use positional argument after named argument in %s on line %d
|
/php-src/ext/intl/tests/ |
H A D | grapheme_out_of_bounds.phpt | 211 grapheme_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 212 grapheme_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 213 grapheme_strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 215 grapheme_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 216 grapheme_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 217 grapheme_strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 220 grapheme_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 221 grapheme_stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 224 grapheme_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) 229 grapheme_strpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack) [all …]
|
/php-src/ext/spl/tests/ |
H A D | arrayObject___construct_basic1.phpt | 8 echo "--> Object argument:\n"; 13 echo "--> Array argument:\n"; 16 echo "--> Nested ArrayObject argument:\n"; 26 --> Object argument: 34 --> Array argument: 42 --> Nested ArrayObject argument:
|
/php-src/ext/standard/tests/file/ |
H A D | fseek_ftell_rewind_variation1.phpt | 10 2. Testing fseek() without using argument whence 57 -- Testing fseek() without using argument whence -- 72 -- Testing fseek() without using argument whence -- 87 -- Testing fseek() without using argument whence -- 102 -- Testing fseek() without using argument whence -- 117 -- Testing fseek() without using argument whence -- 132 -- Testing fseek() without using argument whence -- 147 -- Testing fseek() without using argument whence -- 162 -- Testing fseek() without using argument whence -- 177 -- Testing fseek() without using argument whence -- [all …]
|