mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
41 lines
962 B
PHP
41 lines
962 B
PHP
--TEST--
|
|
Test iconv_strlen() function : basic functionality
|
|
--SKIPIF--
|
|
<?php
|
|
extension_loaded('iconv') or die('skip');
|
|
function_exists('iconv_strlen') or die("skip iconv_strlen() is not available in this build");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : int iconv_strlen(string str [, string charset])
|
|
* Description: Get character numbers of a string
|
|
* Source code: ext/iconv/iconv.c
|
|
*/
|
|
|
|
/*
|
|
* Test basic functionality of iconv_strlen()
|
|
*/
|
|
|
|
echo "*** Testing iconv_strlen() : basic functionality***\n";
|
|
|
|
$string_ascii = b'abc def';
|
|
//Japanese string in UTF-8
|
|
$string_mb = base64_decode(b'5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJfvvJjvvJnjgII=');
|
|
|
|
echo "\n-- ASCII String --\n";
|
|
var_dump(iconv_strlen($string_ascii));
|
|
|
|
echo "\n-- Multibyte String --\n";
|
|
var_dump(iconv_strlen($string_mb, 'UTF-8'));
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
*** Testing iconv_strlen() : basic functionality***
|
|
|
|
-- ASCII String --
|
|
int(7)
|
|
|
|
-- Multibyte String --
|
|
int(21)
|
|
===DONE===
|