php8.5
Home/ Manual/ intl / resourcebundle/ ResourceBundle::create

ResourceBundle::create

PHP function Edit on GitHub ✎

(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)

Create a resource bundle

Description

Oop (method)

ResourceBundle::create(string|null $locale, string|null $bundle, bool $fallback = true): ResourceBundle|null

Procedural

resourcebundle_create(string|null $locale, string|null $bundle, bool $fallback = true): ResourceBundle|null

Oop (constructor):

ResourceBundle::__construct(string|null $locale, string|null $bundle, bool $fallback = true)

Creates a resource bundle.

Parameters

locale

Locale for which the resources should be loaded (locale name, e.g. en_CA).

bundle

The directory where the data is stored or the name of the .dat file.

fallback

Whether locale should match exactly or fallback to parent locale is allowed.

Return Values

Returns ResourceBundle object or null on error.

Examples

resourcebundle_create() example

php
<?php
$r = resourcebundle_create( 'es', "/usr/share/data/myapp");
echo $r['teststring'];
?>

ResourceBundle::create() example

php
<?php
$r = ResourceBundle::create( 'es', "/usr/share/data/myapp");
echo $r['teststring'];
?>

The above example will output:

output
¡Hola, mundo!

See Also

Source: reference/intl/resourcebundle/create.xml · from the official PHP manual (php/doc-en)