2002-10-22 03:19:05 +08:00
|
|
|
|
--TEST--
|
|
|
|
|
mb_strwidth()
|
|
|
|
|
--SKIPIF--
|
2002-10-30 16:06:52 +08:00
|
|
|
|
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
|
2002-10-22 03:19:05 +08:00
|
|
|
|
--FILE--
|
2002-03-02 18:44:57 +08:00
|
|
|
|
<?php
|
|
|
|
|
// TODO: Add more encoding, strings.....
|
|
|
|
|
//$debug = true;
|
2008-07-18 00:30:32 +08:00
|
|
|
|
ini_set('include_path', dirname(__FILE__));
|
2002-03-18 14:03:53 +08:00
|
|
|
|
include_once('common.inc');
|
2002-03-02 18:44:57 +08:00
|
|
|
|
|
|
|
|
|
// EUC-JP
|
|
|
|
|
$euc_jp = '0123<32><33><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܸ<EFBFBD><DCB8>Ǥ<EFBFBD><C7A4><EFBFBD>EUC-JP<4A><50><EFBFBD>ȤäƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܸ<EFBFBD><DCB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݽ<EFBFBD><DDBD><EFBFBD><EFBFBD><EFBFBD>';
|
|
|
|
|
|
|
|
|
|
print "1: ". mb_strwidth($euc_jp, 'EUC-JP') . "\n";
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
print "2: ". mb_strwidth($euc_jp, 'EUC-JP') . "\n";
|
|
|
|
|
print "3: ". mb_strwidth($euc_jp, 'EUC-JP') . "\n";
|
|
|
|
|
// Note: Did not start form -22 offset. Staring from 0.
|
|
|
|
|
print "4: ". mb_strwidth($euc_jp, 'EUC-JP') . "\n";
|
|
|
|
|
|
|
|
|
|
$str = mb_strwidth($euc_jp, 100, -10,'...','EUC-JP');
|
|
|
|
|
($str === "") ? print "5 OK\n" : print "NG: $str\n";
|
|
|
|
|
|
|
|
|
|
$str = mb_strwidth($euc_jp, -100, 10,'...','EUC-JP');
|
|
|
|
|
($str !== "") ? print "6 OK: $str\n" : print "NG: $str\n";
|
|
|
|
|
*/
|
|
|
|
|
?>
|
2002-10-22 03:19:05 +08:00
|
|
|
|
|
|
|
|
|
--EXPECT--
|
|
|
|
|
1: 68
|