/PHP-8.1/ext/intl/tests/ |
H A D | resourcebundle_internal.phpt | 2 Test ResourceBundle::__construct() with internal ICU bundles 10 $b = new ResourceBundle('de_DE', 'ICUDATA-region'); 13 $b = new ResourceBundle('icuver', 'ICUDATA'); 16 $b = new ResourceBundle('supplementalData', 'ICUDATA', false);
|
H A D | resourcebundle_double_ctor.phpt | 2 ResourceBundle double construction should not be allowed 9 $r = new ResourceBundle('en_US', BUNDLE); 18 ResourceBundle object is already constructed
|
H A D | resourcebundle_iterator.phpt | 2 Test ResourceBundle iterator 10 $r = new ResourceBundle( 'en_US', BUNDLE ); 37 ResourceBundle Object 51 ResourceBundle Object
|
H A D | resourcebundle_create.phpt | 2 Test ResourceBundle::__construct() - existing/missing bundles/locales 42 ResourceBundle Object 48 ResourceBundle Object 54 ResourceBundle Object
|
H A D | resourcebundle_null_mandatory_args.phpt | 2 ResourceBundle constructor bundle accepts NULL for first two arguments 13 $r = new ResourceBundle('en_US', NULL); 18 $r = new ResourceBundle(NULL, NULL);
|
H A D | resourcebundle_null_mandatory_args_variant_icu72-1.phpt | 2 ResourceBundle constructor bundle accepts NULL for first two arguments 13 $r = new ResourceBundle('en_US', NULL); 18 $r = new ResourceBundle(NULL, NULL);
|
H A D | resourcebundle_countable.phpt | 2 Test ResourceBundle implements Countable 9 $r = new ResourceBundle( 'es', BUNDLE );
|
H A D | resourcebundle_null_mandatory_args_variant2.phpt | 2 ResourceBundle constructor bundle accepts NULL for first two arguments 14 $r = new ResourceBundle('en_US', NULL); 19 $r = new ResourceBundle(NULL, NULL);
|
H A D | resourcebundle_traversable.phpt | 2 Bug #55610: ResourceBundle does not implement Traversable 9 $r = new ResourceBundle( 'es', BUNDLE );
|
H A D | resourcebundle_arrayaccess.phpt | 2 Test ResourceBundle array access and count - existing/missing keys 10 $r = new ResourceBundle( 'en_US', BUNDLE );
|
H A D | resourcebundle_locales.phpt | 2 Test ResourceBundle::getLocales
|
H A D | gh8115.phpt | 27 new \ResourceBundle(null, null, null); 40 Caught (8192): ResourceBundle::__construct(): Passing null to parameter #3 ($fallback) of type bool…
|
H A D | resourcebundle.build | 3 // THIS SCRIPT WILL REBUILD ResourceBundle bundles from source files
|
H A D | resourcebundle_individual.phpt | 2 Test ResourceBundle::get() and length() - existing/missing keys
|
H A D | ut_common.inc | 409 return new ResourceBundle($locale, $bundle, $fallback); 423 … return $GLOBALS['oo-mode'] ? ResourceBundle::getLocales($bundle):resourcebundle_locales($bundle);
|
/PHP-8.1/ext/intl/resourcebundle/ |
H A D | resourcebundle_arginfo.h | 10 …ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_ResourceBundle_create, 0, 2, ResourceBundle, 1) 37 ZEND_METHOD(ResourceBundle, __construct); 44 ZEND_METHOD(ResourceBundle, getIterator); 48 ZEND_ME(ResourceBundle, __construct, arginfo_class_ResourceBundle___construct, ZEND_ACC_PUBLIC) 55 ZEND_ME(ResourceBundle, getIterator, arginfo_class_ResourceBundle_getIterator, ZEND_ACC_PUBLIC)
|
H A D | resourcebundle.stub.php | 5 class ResourceBundle implements IteratorAggregate, Countable class 13 …static function create(?string $locale, ?string $bundle, bool $fallback = true): ?ResourceBundle {}
|
H A D | resourcebundle_class.h | 38 #define RESOURCEBUNDLE_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(ResourceBundle, rb)
|
H A D | resourcebundle_class.c | 144 PHP_METHOD( ResourceBundle, __construct ) in PHP_METHOD() argument 363 PHP_METHOD(ResourceBundle, getIterator) { in PHP_METHOD() argument
|
/PHP-8.1/ext/intl/ |
H A D | php_intl.stub.php | 377 … resourcebundle_create(?string $locale, ?string $bundle, bool $fallback = true): ?ResourceBundle {} 380 function resourcebundle_get(ResourceBundle $bundle, $index, bool $fallback = true): mixed {} 382 function resourcebundle_count(ResourceBundle $bundle): int {} 390 function resourcebundle_get_error_code(ResourceBundle $bundle): int {} 392 function resourcebundle_get_error_message(ResourceBundle $bundle): string {}
|
H A D | php_intl_arginfo.h | 627 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_resourcebundle_create, 0, 2, ResourceBundle, 1) 634 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0) 640 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0) 650 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0)
|