No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

ResourceBundle::create

resourcebundle_create

PHP: ResourceBundle::create - Manual Home of Manuel PHP  Contents Haut

ResourceBundle::__construct

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

ResourceBundle::create -- resourcebundle_create -- ResourceBundle::__constructCreate a resource bundle

PHP: ResourceBundle::create - Manual Home of Manuel PHP  Contents Haut

Description

Object oriented style (method)

public static ResourceBundle::create ( string $locale , string $bundlename [, bool $fallback ] ) : ResourceBundle

Procedural style

resourcebundle_create ( string $locale , string $bundlename [, bool $fallback ] ) : ResourceBundle

Object oriented style (constructor):

public ResourceBundle::__construct ( string $locale , string $bundlename [, bool $fallback ] )

Creates a resource bundle.

PHP: ResourceBundle::create - Manual Home of Manuel PHP  Contents Haut

Parameters

locale

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

bundlename

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.

PHP: ResourceBundle::create - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 resourcebundle_create() example

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

Example #2 ResourceBundle::create() example

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

The above example will output:

¡Hola, mundo!
Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph