htmlentities09.phpt
来自「php-4.4.7学习linux时下载的源代码」· PHPT 代码 · 共 24 行
PHPT
24 行
--TEST--htmlentities() test 9 (mbstring / Shift_JIS)--INI--output_handler=--SKIPIF--<?php extension_loaded("mbstring") or die("skip mbstring not available\n"); mb_internal_encoding('Shift_JIS'); $php_errormsg = NULL; @htmlentities("\x81\x41\x81\x42\x81\x43", ENT_QUOTES, ''); if ($php_errormsg) { die("skip Shift_JIS chracter set is not supported on this platform.\n"); }?>--FILE--<?php mb_internal_encoding('Shift_JIS'); print mb_internal_encoding()."\n"; var_dump(htmlentities("\x81\x41\x81\x42\x81\x43", ENT_QUOTES, ''));?>--EXPECT--SJISstring(6) "丄丅丆"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?