????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.36 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/intl/tests/ |
Upload File : |
--TEST--
Test ResourceBundle::get() and length() - existing/missing keys
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php
include "resourcebundle.inc";
function ut_main() {
$str_res = '';
// fall back
$r = ut_resourcebundle_create( 'en_US', BUNDLE );
$str_res .= sprintf( "length: %d\n", ut_resourcebundle_count($r) );
$str_res .= sprintf( "teststring: %s\n", ut_resourcebundle_get($r, 'teststring' ) );
$str_res .= sprintf( "testint: %d\n", ut_resourcebundle_get($r, 'testint' ) );
$str_res .= print_r( ut_resourcebundle_get($r, 'testvector' ), true );
$str_res .= sprintf( "testbin: %s\n", bin2hex(ut_resourcebundle_get( $r,'testbin' )) );
$r2 = ut_resourcebundle_get($r, 'testtable' );
$str_res .= sprintf( "testtable: %d\n", ut_resourcebundle_get($r2, 'major' ) );
$r2 = ut_resourcebundle_get($r,'testarray' );
$str_res .= sprintf( "testarray: %s\n", ut_resourcebundle_get($r2, 2 ) );
$t = ut_resourcebundle_get( $r, 'nonexisting' );
$str_res .= debug( $t );
return $str_res;
}
include_once( 'ut_common.inc' );
ut_run();
?>
--EXPECT--
length: 6
teststring: Hello World!
testint: 2
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
[6] => 7
[7] => 8
[8] => 9
[9] => 0
)
testbin: a1b2c3d4e5f67890
testtable: 3
testarray: string 3
NULL
2: Cannot load resource element 'nonexisting': U_MISSING_RESOURCE_ERROR