Searched refs:substitute_character (Results 1 – 12 of 12) sorted by relevance
/php-src/ext/mbstring/tests/ |
H A D | mb_substitute_character_variation_strict_types.phpt | 118 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) is not a valid codepoint 120 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 122 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 124 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 126 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 128 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 130 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 132 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 134 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 142 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… [all …]
|
H A D | mb_substitute_character_variation_weak_types.phpt | 116 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) is not a valid codepoint 124 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) is not a valid codepoint 126 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", … 128 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", … 134 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 136 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 138 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 140 TypeError: mb_substitute_character(): Argument #1 ($substitute_character) must be of type string|in… 154 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", … 156 ValueError: mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", … [all …]
|
H A D | bug69079.phpt | 36 mb_substitute_character(): Argument #1 ($substitute_character) is not a valid codepoint 38 mb_substitute_character(): Argument #1 ($substitute_character) is not a valid codepoint
|
H A D | mb_get_info.phpt | 13 mbstring.substitute_character=123 63 ["substitute_character"]=>
|
H A D | mb_substitute_character_basic.phpt | 39 mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", "entity" or …
|
H A D | mb_substitute_character.phpt | 45 mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", "entity" or …
|
H A D | ini_mbstring_invalid.phpt | 12 mbstring.substitute_character=U+3000,NON_EXISTING_CHARACTER,JIS+7E7E
|
/php-src/ext/mbstring/ |
H A D | mbstring.stub.php | 76 function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool {} argument
|
H A D | mbstring_arginfo.h | 23 ZEND_ARG_TYPE_MASK(0, substitute_character, MAY_BE_STRING|MAY_BE_LONG|MAY_BE_NULL, "null")
|
H A D | mbstring.c | 1440 zend_string *substitute_character = NULL; in PHP_FUNCTION() local 1446 Z_PARAM_STR_OR_LONG_OR_NULL(substitute_character, substitute_codepoint, substitute_is_null) in PHP_FUNCTION() 1462 if (substitute_character != NULL) { in PHP_FUNCTION() 1463 if (zend_string_equals_literal_ci(substitute_character, "none")) { in PHP_FUNCTION() 1467 if (zend_string_equals_literal_ci(substitute_character, "long")) { in PHP_FUNCTION() 1471 if (zend_string_equals_literal_ci(substitute_character, "entity")) { in PHP_FUNCTION()
|
/php-src/ |
H A D | php.ini-development | 1571 ; substitute_character used when character cannot be converted 1574 ;mbstring.substitute_character = none
|
H A D | php.ini-production | 1573 ; substitute_character used when character cannot be converted 1576 ;mbstring.substitute_character = none
|
Completed in 38 milliseconds