ResourceBundle::create
(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)
Create a resource bundle
Description
Oop (method)
Procedural
Oop (constructor):
Creates a resource bundle.
Parameters
localeLocale for which the resources should be loaded (locale name, e.g. en_CA).
bundleThe directory where the data is stored or the name of the .dat file.
fallbackWhether 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
$r = resourcebundle_create( 'es', "/usr/share/data/myapp");
echo $r['teststring'];
?>ResourceBundle::create() example
<?php
$r = ResourceBundle::create( 'es', "/usr/share/data/myapp");
echo $r['teststring'];
?>The above example will output:
¡Hola, mundo!